I am using dreamweaver to create a form, The problem is when I try to make certain fields required it works, but when I try to make check boxes a required field... I cant seem to set the same setting to check boxes.. any help.
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");
}
You need to put Javascript for that to validate the fields. That's the best option. Google "javascript validation email form". You should get what you want there.
__________________ Read my Blog! A Practical Guide to Get the Best out of the Internet. Buy My T-Shirts! Only $15 Each.