Using JQuery or JavaScript, I want to detect when a user selects a value, even if they don\'t change the already selected value.
How can this be accomplished?
Have you tried .blur()?
$('#MyID').blur(function(){ //my function });
Please note that you will have to click somewhere outside the dropdown menu on the page before the function will trigger. I don't know if this can be passed.
JsFiddle here