In IE7 only, I'm getting a weird out of memory error when I run my Autocompleter.Local. The content downloaded is around 1 MB in terms, but it's done in the background (in a JSON file).
function create_listeners() {
jQuery('.auto_complete_field').each(function() {
var terms_id = 'terms_' + jQuery(this).attr('id');
jQuery(this).after('<div class="auto_complete" id="' + terms_id + '"></div>');
// jQuery(this).attr('value', 'test');
new Autocompleter.Local(jQuery(this).attr('id'),terms_id, terms, {fullSearch:false, frequency:0, minChars:1});
})
}
Anyone have any idea why this would affect IE 6/7 only?