I have a select field that have have present options and I have a php script check a mysql database and add a select tag to the one currently being used.
I need to find a way to know if the user have changed the select field or not before submitting it.
var Access = document.forms[UIDF]["Access"].value;
var DAccess = document.forms[UIDF]["Access"].defaultIndex; <--- This is my problem. I just need to know how to get the selected option value as this keep changing with every user
<select name="Access">
<option value="0" selected='selected'>Employee</option>
<option value="1">Team Leader</option>
<option value="2">Admin</option>
</select>
The
Option
tag has a javascript attributedefaultSelected
that's set totrue
if the option had aselected
value on page load. Note that this is theoption
tag and not theselect
one, so you'll have to loop through the options and check for the attribute.Something like
Or, more to the point: