I\'m using the jQuery plugin Validation to validate a form. I have a select list looking like this:
you want to make sure that the user selects anything but "Choose an option" (which is the default one). So that it won't validate if you choose the first option. How can this be done?
You can do this by simple adding attribute required = "required" in the select tag. you can see it in below code
It worked fine for me at chorme, firefox and internet explorer. Thanks