-2

I did used $('#advocate').focus(); after model is about to close but is does not worked

Ajay Takur
  • 5,792
  • 5
  • 34
  • 52
  • Possible duplicate of [Bind a function to Twitter Bootstrap Modal Close](http://stackoverflow.com/questions/8363802/bind-a-function-to-twitter-bootstrap-modal-close) – Dekel Aug 10 '16 at 13:12

1 Answers1

0

I have the same problem. $('#inputId').focus(); works fine when modal is hidden or when input is part of open modal. Focus after modal closing should work(other functions like $('#inputId').val() works fine), but it doesn't:

$('#myModal').on('hidden.bs.modal', function () {
    $('#inputId').focus();
});
Exik
  • 198
  • 1
  • 10