Skip to content

Instantly share code, notes, and snippets.

@delba
Created July 10, 2013 13:55
Show Gist options
  • Select an option

  • Save delba/5966482 to your computer and use it in GitHub Desktop.

Select an option

Save delba/5966482 to your computer and use it in GitHub Desktop.
Never lose focus
$(document).on('blur', '#input', function(e) {
var $this = $(this);
setTimeout(function() {
$this.focus();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment