I have a select element having values 10,25,50,100. Onclick of each i have to call a function .
So can you tell me how can I access the value of a select element when clicked or selected and pressed enter.
Here is my code for select element:
<select name='rows'>
<option name = 'ten' value='10'>10</option>
<option name='twofive' value='25'>25</option>
<option name='fifty' value='50'>50</option>
<option name='hundred' value='100'>100</option>
</select>
Thank you in advance.
This could be achieved by using Javascript