I have a select element and the user changes the selection. Later I want to programmatically change the select element back to its default value. What's the best way to do this? I am looking for a way to do this natively, without JQuery.
For example if the select is:
<select id='select'>
<option value='one' selected=true>One</option>
<option value='two'>Two</option>
<option value='three'>Three</option>
</select>
And the user changes the selection to "Two" but later I want to change it back to the default value of "One" how would I do this?