Click on jQuery Sortable list does not blur input
问题 I can blur my input by clicking anywhere on the page except the jQuery Sortable list. How can I fix this? UPD: demo 回答1: $('sortable').mousedown(function(){ document.activeElement.blur(); }); 回答2: Take a look at the cancel option from the jquery-ui $("#sortable").sortable(cancel: 'input'); You'll have to remove the $("#sortable").disableSelection(); See my jsfiddle UPDATE I understand your problem. Because jQuery stops the default functionality of the browser when sorting a list, the blur is