Plugins

User login
Can't find a Plugin?

Can't find a Plugin you are looking for? Check out the jQuery Wiki page.

Are you a plugin developer? Please move your plugin over to this site.

Website Bug or Feature Request?

Found a bug on the new jQuery Plugin website? Have a feature request?

Submit it to the jQuery Plugin website issue queue to ensure it is noticed!

Doesn't work in IE6 or IE7


Project:jQuery AutoComplete
Version:1.0.1
Component:Code
Category:bug report
Priority:critical
Assigned:Unassigned
Status:active
Description

I'm kinda disappointed that this pushed as production-ready but it doesn't work in IE (6/7).

Load up http://docs.jquery.com/Plugins/AutoComplete/autocomplete#options and you'll get errors.

:-/

Comments

#1

Yeah, this is funny when you read on the author site (http://reinh.com/2008/02/21/new-jquery-autocomplete-plugin.html):

Why, then, do we need another? The answer for me was simple: The existing plugins all fit into at least one (and often most) of the following categories: [...], poorly coded, [...].

Anyway, this one can be fixed easily. On line 137, replace the very odd

var container = list.wrapAll(opt.wrapper).parents(":last").children();

by
var container = list.wrapAll(opt.wrapper).parent();

Hope this helps.