Quote:
Originally Posted by sebbe
Is that IE6?
On line 74 in threadbump.js try change
HTML Code:
document.getElementById('td_threadtitle_' + tthreadid).parentNode.getElementsByTagName('td')[3].getElementsByTagName('div')[0].getElementsByTagName('span')[0].firstChild.nodeValue = xmlHttp.responseText;
to
HTML Code:
document.getElementById('td_threadtitle_' + tthreadid).parentNode.getElementsByTagName('td')[3].getElementsByTagName('div')[0].getElementsByTagName('span')[0].innerHTML = xmlHttp.responseText;
also on line 72 you can hardcode your statusicon folder like so
HTML Code:
setAttribute('src', 'http://www.mydomain.com/forum/images/statusicon/thread_dot_new.gif');
|
My crew uses IE6 and firefox...
for the status icon, the following works instead (yes omit the http:// part or else the link becomes http://http// ):
HTML Code:
setAttribute('src', 'www.mydomain.com/forum/images/statusicon/thread_dot_new.gif');
Thanks for your work in this mod. All of my crew love it!