I'm using a jQuery plugin that uses a JSON string to suggest its data.
Everything works fine if the JSON string has less than X elements. Above this limit nothing happens, autosuggest fails. I guess it's because there's a kind of parsing limit, but how can I bypass this please ? I have an array of +5000 elements...
Here is my json code :
var SearchTxt = '[{"t":"word one"},{"t":"word two"}, ...]';
Thank you !