Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the Twitter Bootstrap lib on a new project and I want for part of the page to refresh and retrieve the latest json data on modal close. I dont see this anywhere in the documentation can someone point it out to me or suggest a solution.

Two problems with using the documented methods

 $('#my-modal').bind('hide', function () {
   // do something ...
 });

I attach a "hide" class to the modal already so it does not display on page load so that would load twice

even if I remove the hide class and set the element id to "display:none" and add "console.log("THE MODAL CLOSED");" to the function above when I hit close nothing happens.

share|improve this question

3 Answers

up vote 30 down vote accepted
$('#myModal').on('hidden', function () {
    // do something…
})

I see it is an old question but for future search this may help.

http://twitter.github.com/bootstrap/javascript.html#modals

Events

share|improve this answer

You just need to bind an event like this:

$('#my-modal').on('hidden', function () {
  window.alert('hidden event fired!');
})

See the events section of the docs here:

http://twitter.github.com/bootstrap/javascript.html#modals

See this JsFiddle for a working example:

http://jsfiddle.net/kRLQ4/368/

share|improve this answer
Cant get that to work. – BillPull Dec 6 '11 at 18:00
2  
I've updated my answer with a working example. Hope this helps! – meatballs Dec 9 '11 at 22:58
1  
For anyone that finds this post looking to implement this type of callback, there is an extension module to Bootstrap that includes this functionality as well as a lot of other helpful functions for dynamically creating dialogs/alerts/confirmations: bootboxjs.com – 100acrewood Sep 9 '12 at 2:29
@Ricardo Lima's response below is now the correct method for monitoring events in jQuery/bootstrap – Scott BonAmi Dec 26 '12 at 5:14
@meatballs still an up vote for the working example..even though bind has been deprecated. – StephenPatten Mar 26 at 18:22
show 2 more comments

jQuery's bind and on where not firing when the modal was closing. I had more success with live:

$('#my-modal').live('hidden', function(e) {
    // do something
});
share|improve this answer
.live has been deprecated in jQuery 1.7+ see Ricardo's answer above and use .on api.jquery.com/on – BillPull Mar 14 at 17:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.