I have an autocomplete function which works fine in all browsers except IE from here:
In IE, when I start typing, nothing happens. Firebug shows no errors, and other browsers are fine. The notes on that link say to wait for the DOM to load. Am I missing something?
});
Code:
$(document).ready(function () { var a = $('#sbox').autocomplete({ serviceUrl:'calcfile.php', minChars:1, maxHeight:400, width:300, params: { ajtype:'4' }, deferRequestBy: 0, //miliseconds noCache: true // true is no caching });
});
Comment