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?
Try this code.
$("#MyID").click(function (){ alert($("#MyID").val()); });
Try Here!