Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Auto-submit dropdown menu

Many users assume that a <select> element (dropdown menu)
will have its effect without pressing submit button.
(poor user...). The solution is to have it submit automatically.
<select name='myfield' onchange='this.form.submit()'>
<option .... >
...
</select>
</form>

Simply onchange='this.form.submit()'
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS