Problem with UI 1.7, Sliders and IE
I've been trying to upgrade to UI 1.7.1 from 1.6 and have run right
into a problem with an example that worked just fine under UI 1.5.
I have a ranged slider with 2 handles, using a custom image for the
handle. When I go to set the initial value of the handle like so $
('#acreSlider').slider('values', 0, currMinAcreKey); ... I get an
error in IE6 and IE 7 saying "Invalid Argument".
I traced this back to line 1062 in jquery-1.3.2.js that's doing this:
if ( set )
elem[ name ] = value;
I further traced what was being set when the error occurred and it
seems jquery ui was trying to set the "left" and "width" style
properties of certain slider related elements (can't tell which).
Furthermore, this is an IE only problem. This works fine on Firefox.
Any ideas? Anyone have a similar problem?
Thanks!