Quote:
Originally Posted by alkahf
Yes yxboom I visited your forum, Hack working with IE but not working with Mozilla Yet.
May be next version.
Regards 
alkahf
|
This modification should make it work in both IE and Mozilla variants ...
Replace the
showSummaryNewsSection() function with the following:
Code:
function showSummaryNewsSection(itemNo,on)
{
var itemObj;
var ourElement;
itemObj = "abstract" + itemNo;
ourElement = (document.all) ? document.all.item(itemObj) : document.getElementById(itemObj) ;
if(on)
{
ourElement.style.display = "";
/*if (intervalTime != 0)
window.clearInterval(intervalTime);*/
}
else
{
ourElement.style.display = "none";
if (intervalTime != 0)
window.clearInterval(intervalTime);
}
}
I hope that a) helps and b) works
EDIT: It works in Mozilla AND IE AND Opera now ...
demo here