Using the jquery.suggest plugin with CodeIgniter?
If so, you’ll have to make one small change to get jquery.suggest working with CI’s allowed URI chars feature.
Just change line 127 in jquery.suggest.js from this:
$.get
to this:
$.post
Done.
Hi. I'm Kyle Bragger. I make Forrst. If you're so inclined, follow me on Twitter here.
If so, you’ll have to make one small change to get jquery.suggest working with CI’s allowed URI chars feature.
Just change line 127 in jquery.suggest.js from this:
$.get
to this:
$.post
Done.