I suffered a similar issue: in my modal window, I have two buttons, "Cancel" and "OK". Originally, both buttons would close the modal window by invoking $('#myModal').modal('hide') (with "OK" previously executing some code) and the scenario would be the following:
- Open the modal window
- Do some operations, then click on "OK" do validate them and close the modal
- Open the modal again and dismiss by clicking on "Cancel"
- Re-open the modal, click again on "Cancel" ==> the backdrop is no longer accessible!
well, my fellow next desk saved my day: instead of invoking $('#myModal').modal('hide'), give your buttons the attribute data-dismiss="modal" and add a "click" event to your "Submit" button. In my problem, the HTML (well, TWIG) code for the button is:
<button id="modal-btn-ok" class="btn" data-dismiss="modal">OK</button>
<button id="modal-btn-cancel" class="btn" data-dismiss="modal">Cancel</button>
and in my JavaScript code, I have:
$("#modal-btn-ok").one("click", null, null, function(){
// My stuff to be done
});
while no "click" event is attributed to the "Cancel" button. The modal now closes properly and lets me play again with the "normal" page. It actually seems that the data-dismiss="modal" should be the only way to indicate that a button (or whatever DOM element) should close a Bootstrap modal. The .modal('hide') method seems to behave in a not quite controllable way.
Hope this helps!
$('#myModal').modal('hide')? Can you put some code here? – Pigueiras Jul 17 '12 at 11:38