Has this module been tested in IE7? I receive a 'object expected' error on

var x = $ui('#id');

Comments

bleen’s picture

the error I received (IE7 only) was on line 5969 of jquib.js ... commenting out the entire "slider" block of code solves the problem for the moment

emackn’s picture

i commented out the slider block but then started getting M"S runtime error: 'getElementById' is Null or not an object"

joy!

update: the runtime error was from something else. Isolating out everything else not needed got everything working fine in my test setup.

febbraro’s picture

In IE7 I was getting "Expected identifier, string, or number" on line 5969 of jquib.js

The reason for the error is explained here: http://cow.neondragon.net/index.php/1404-Internet-Explorer-Javascript-Er...

I had to edit jquib.js and on line 5968 I changed:

change: function(e, ui) { cur[0].value = ui.value; cur[0].setAttribute("value", ui.value); },

to

change: function(e, ui) { cur[0].value = ui.value; cur[0].setAttribute("value", ui.value); }   //no trailing comma

and that fixed my problem. I'm guessing that it is actually a problem with jQuery UI slider.js file, but this fix works.

febbraro’s picture

Looks like as of 12/26/2007 jquery.slider.js is fixed in their SVN repo, but not in the download.

Rowanw’s picture

Thanks febbraro, removing the comma on line 5968 fixed my UI Tabs issue in both IE7 and Opera.

Rowanw’s picture

Category: support » bug
Priority: Normal » Critical

Updating issue.

starbow’s picture

Status: Active » Closed (fixed)