Development/Bootstrap
bootstrap - Autofocus input in twitter bootstrap modal
linuxism
2014. 5. 14. 14:10
Hi everyone!
I have such problem - I need to autofocus some element inside twitter bootstrap modal (after it shows). The tricky part is here - content of this modal is loaded using 'data-remote' (jQuery.load method) from separate html file, so
$(document).on('shown', ".modal", function() {
$('[autofocus]', this).focus();
});
works only if modal was loaded before.
The question is - how to make autofocus work at the first time modal loads.
Thanks in advance!
try removing tabindex="-1" and it works fine.
<div class="modal fade" id="modalID" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal fade" id="modalID" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
Hope this helps!
source - http://stackoverflow.com/questions/14940423/autofocus-input-in-twitter-bootstrap-modal