How can I check if a user has selected something from a <select> field in HTML5?
I see <select> doesn't support the new required attribute... do I have to use JavaScript then? Or is there something I’m missing? :/
|
How can I check if a user has selected something from a I see |
||||
|
This works for me - Have the first value empty - required works on empty values.
As per @Pauls post of the documentation (the bold is mine)
|
||||
|
The Which browser doesn’t honour this? (Of course, you have to validate on the server anyway, as you can’t guarantee that users will have JavaScript enabled.) |
|||||||
|
|
You can use the In Javascript, you can check the According to the HTML5 spec,
|
|||
|
|
|
Try this
|
|||
|
|
selectedIndex. – Luke Sneeringer May 18 '11 at 17:34