> replace document.threadform with document.forms.threadform
Actually, I've found out this isn't correct, either. document.forms
is supposedly not valid in strict XHTML mode. Firefox supports it to some point, but it is sort of broken. I ended up changing all <form name=
into <form id=
, and used document.getElementsById()
instead. I should have done so from the start, I suppose, since it is The Way.