[jQuery] Possible typo/bug in jquery 1.1.3.1 source?
John,
There is a "comma" at the end of line #694 in 1.1.3.1 jquery.js
source, shouldn't this be a semi-colon? It's not part of an object
literal, and may cause problems with IE6. We know how it loves extra
commas.
jQuery.styleFloat = jQuery.browser.msie ? "styleFloat" : "cssFloat",
to
jQuery.styleFloat = jQuery.browser.msie ? "styleFloat" : "cssFloat";
Regards, Mike Kidder