I need a validation for a drop-down menu. This validation *must not* be an onSubmit validation but something else... onMouseOver, maybe...
The problem, I have is with an html form that uses method=GET then it parses form data to other forms, based on radio button selections. This form already has two onSubmit="return" set in the form element.
I did a validation on the drop-down list, which uses onSubmit="return confirmSubmit(this)">. When I insert the onsubmit into the form element, it will not take it.
I need a validation that'll detect when the drop-down list has been skipped.
By the way, the form does not submit using a submit button, instead when the user clicks a radio button, it sends the user already filled data fields into a secondary form.
The problem, I have is with an html form that uses method=GET then it parses form data to other forms, based on radio button selections. This form already has two onSubmit="return" set in the form element.
I did a validation on the drop-down list, which uses onSubmit="return confirmSubmit(this)">. When I insert the onsubmit into the form element, it will not take it.
I need a validation that'll detect when the drop-down list has been skipped.
By the way, the form does not submit using a submit button, instead when the user clicks a radio button, it sends the user already filled data fields into a secondary form.