Created
November 9, 2015 15:06
-
-
Save zanesensenig/e32534daef754b75d4fe to your computer and use it in GitHub Desktop.
Autofocus an input field inside of a Foundation modal window.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).on('opened.fndtn.reveal', '[data-reveal]', function () { | |
var modal = $(this); | |
modal.find('[autofocus]').focus(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment