Issue: I have a dropdown with a list of years in it with nothing selected, the user selects \"1976\", I run a function. If the user clicks on the dropdown again and selects
This basic idea should work using jQuery using click event:
$('#yourselect').click(function() { console.log("your function"); });
A simple if statement could prevent firing off the function when initially clicking the select element.