Skip to content

Instantly share code, notes, and snippets.

@Tenderfeel
Created September 12, 2018 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tenderfeel/225e2159bc56a8015a5966b673c364ba to your computer and use it in GitHub Desktop.
Save Tenderfeel/225e2159bc56a8015a5966b673c364ba to your computer and use it in GitHub Desktop.
// モーダル開閉時のフォーカス操作(モーダルのルート要素にtabindex=0必要)
$('.uk-modal').on('show', (e) => {
$(e.target).data('lastFocusdElement', window.document.activeElement).focus();
}).on('hide', (e) => {
$(e.target).data('lastFocusdElement').focus();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment