How can I check if a user has selected something from a field in HTML5?
I see doesn\'t support the new
You can do it also dynamically with JQuery
Set required
$("#select1").attr('required', 'required');
Remove required
$("#select1").removeAttr('required');