There could also be other problems. This is the error I'm getting:
SCRIPT438: Object doesn't support property or method 'addClassName'
organictabs.jquery.js, line 24 character 17
The addClassName method is non-standard. In the browsers where it works, it's probably inherited from some other code on the page using the Element or Object prototypes. IE 7 doesn't support the Element or Object prototypes, in any case it's not getting that method. But jQuery has it's own method for that, and that method is supported in IE 6 and later. Here's the line:
Code:
this.parentNode.addClassName('current');
To carry out its intended functionality using jQuery, it should be:
Code:
$(this.parentNode).addClass('current');
Using a text only editor like NotePad, make that change to the organictabs.jquery.js file. Use that version. This change shouldn't hurt other browsers.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks