Forum Moderators: open
The group name is "send". The value I want checked is whether it is "sendemail". If it is I want an alert to ask that the subject is required.
Thx.
Robert O.
Here is aprt of what I have so far:
if((form.send.value).checked && (trim(form.subject.value).length == 0))
{
alert("Email subject is required.");
return false;
if(form.send[0].checked && (trim(form.subject.value).length == 0))
{
alert("Email subject is required.");
return false;
Another note. Be sure to test on IE and Mozilla(et al) because I think they differ in the way you refer to certain objects.