DX Tags
Also,
Not sure where I should post this, but I don't want the subject field for my comments. I was getting a javascript error because the javascript was trying to access the subject field.
Here's my fix.
In the loader() fuction:
before:
f.subject.focus();
after:
if(typeof f.subject != "undefined"){f.subject.focus();}
In the loader2() function:
before:
f.subject.value=blogsubject;
after:
if(typeof f.subject != "undefined"){f.subject.value=blogsubject;}
Responses to this Comment
[1]
•DX Tags (Steve Castledine 21/12/2004 20:26:01)
> Return to HomepageCopyright © 2002-2006
ProjectDX.orgSoftware Version:
3.0.2
Page Built in about half an hour
Admin