hello I have a select after having made the choice I would like with a button to put it back to o I want to use a class and not an ID I tried the code below but it doesn't work
<script>
$( "#reset" ).click(function() {
//alert( "Handler for .click() called." );
$('over').val(0);
});
</script>
<select class="over" name="overtimeh">
<option value="2.75">2.75</option>
<option value="0">0</option>
<option value="0.25">0.25</option>
<option value="0.5">0.5</option>
</select>
<input type="button" id="reset" value="reset"></input>