A ProjectDX.org Project

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 Homepage
Powered by ProjectDX Live Content 
Engine