Easy tab not working on IE9? You can fix this problem by changing
showContent: function(a) {
var li = $(a.parentNode), ul = $(li.parentNode);
ul.select('li', 'ol').each(function(el){
var contents = $(el.id+'_contents');
if (el==li) {
el.addClassName('active');
contents.show();
} else {
el.removeClassName('active');
contents.hide();
}
});
}
to
showContent: function(a) {
var li = $(a.parentNode), ul = $(li.parentNode);
ul.select('li').each(function(el){
var contents = $(el.id+'_contents');
if (el==li) {
el.addClassName('active');
contents.show();
} else {
el.removeClassName('active');
contents.hide();
}
});
}
at frontend\default\default\template\easytabs\tabs.phtml
Advertisement
Posted by Dirk on September 28, 2011 at 1:59 pm
Thanks a lot my friend!
your solution fix also the Problem in Modern Theme and the Hellowired Theme.
Only go to
app/frontend/default/modern/template/catalog/product/view/tabs.phtml
for modern theme
or
app/frontend/default/hellowired/template/catalog/product/view/tabs.phtml
for hellowired theme
and make the change.
Dirk