Submit form when selected value of select element is changed without javascript
Posted
by
Roman Kupin
on Stack Overflow
See other posts from Stack Overflow
or by Roman Kupin
Published on 2011-01-12T17:40:37Z
Indexed on
2011/01/12
17:53 UTC
Read the original article
Hit count: 143
Hi the question is pretty simple.
<select name="justanumber">
<option value="1" selected="selected">1</option>
<option value="2"></option>
</select>
when selected value is changed i have to do a form post. But the problem is to do this WITHOUT javascript.
I'm not sure is it possible to do that, the best result i have archived is submit form using label for.
© Stack Overflow or respective owner