Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
Open
Description
Live validation before first use of.valid()
doesn't work for selects like it does for input texts, e.g.
<form> <div><input type="text" name="a"></div> <div> <select name="b"> <option value="">Please select...</option> <option value="foo">Foo</option> <option value="bar">Bar</option> </select> </div> <div><input type="text" name="c"></div></form><button>Save</button>
Fiddle here:https://jsfiddle.net/4hq3b0ub/