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 trying to call a function when a modal window is closed but it's not working.

My code is:

<script type="text/javascript">

    $('#myModal').bind('hidden', function () {
        alert("blah");
    });

</script>

<div id="myModal" class="modal hide fade">
  <div class="modal-header">
    <a class="close" data-dismiss="modal">×</a>
    <br />
    Test
  </div>
  <div class="modal-body">
    <p>Modal body</p>
  </div>
  <div class="modal-footer">
    <a href="#" class="btn primary">Primary</a>
    <a href="#" class="btn secondary">Secondary</a>
  </div>
</div>
<button type="button" data-toggle="modal" data-target="#myModal">Launch modalbggg</button>

Any ideas?

share|improve this question

2 Answers

  1. Documentation says to use on, not bind
  2. You sure you included all the source?
  3. Why not using jQuery's magical function:

    $(function() { $('#myModal').bind('hidden', function () { alert("blah"); }); );

share|improve this answer

Your code works perfectly. See here: http://jsfiddle.net/5sJYk/

Ensure that you are using the propper version of Twitter Bootstrap and jQuery, and that you are calling them correctly.

share|improve this answer

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.