Parabellum1905y / ufd

Automatically exported from code.google.com/p/ufd
GNU General Public License v2.0
0 stars 0 forks source link

IE8, jQuery 1.7.1 - list is not filtered when typing (all other IE versions work) #63

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
tritem[indexB].setAttribute($.ui.ufd.classAttr, classString); - this line in 
overwriteClass is an issue.

The code tries to be too smart and fails - checking for $.support.style is not 
equivalent to checking for class/className support. In IE8, $.support.style is 
still false, but setAttribute('className') is not supported anymore.

Replacing .setAttribute() with .className fixes the problem.

Original issue reported on code.google.com by LeonidKh...@gmail.com on 17 Feb 2012 at 6:40

GoogleCodeExporter commented 8 years ago
Yes you are right, this isnt the best way to overwrite; this has been fixed as 
part of a duplicate bug report, thanks.

Original comment by thetoolman on 21 May 2012 at 4:11