I have the following code that removes the focus of the selection menu when the selected item changes:
$("select").change( function() { $(this).blur(); });
However, if I do not select another option for the one that has already been selected, the blur () function will not start ... because nothing has changed.
Is there a βchange or not changeβ function?
source share