View Single Post
Old 12-22-2006, 02:37 PM   #2 (permalink)
epochonaut
Junior Member
 
Join Date: Dec 2006
Posts: 7
Default Re: Validating fields in a form

I only used Dreamweaver once several years ago. Sounds like you might have to directly edit the source code and write a custom javascript function. If your checkbox has NAME="thisCheckbox" then you could write a javascript function like

function validateForm() {
if (document.formName.thisCheckbox[indexNumber].checked == false)
alert("You must check the box");
}

Can't help you with Dreamweaver though, sorry...
epochonaut is offline   Reply With Quote
Sponsored Links