Skip to content

Instantly share code, notes, and snippets.

@jasonyost
Created March 22, 2016 23:54
Show Gist options
  • Save jasonyost/1151f23caf4112a5adde to your computer and use it in GitHub Desktop.
Save jasonyost/1151f23caf4112a5adde to your computer and use it in GitHub Desktop.
Keep focus on a field
$('<element>').on('blur',function () { var blurEl = $(this); setTimeout(function() {blurEl.focus()},10) });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment