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?
$('#MyID option').hover(function(){ //user is on an option, but not selected it yet },function(){ //user left an option without selecting }).click(function(){ //user clicked on an option, selecting it });