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 Twitter Bootstrap's Modal plugin, it all is working, and console is showing no javascript errors, but my issue is that its opening when the page loads? I close the modal, then can re open it no problem, but it just keeps opening when ever I reload the page. Here is my markup

HTML Launch modal

<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-    labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-header">
  <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  <h3 id="myModalLabel">Modal header</h3>
</div>

   <div class="modal-body">
     <p>One fine body…</p>
   </div>

  <div class="modal-footer">
    <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
     <button class="btn btn-primary">Save changes</button>
   </div>
  </div>

Javascript

Pretty simple really :P,

 <script>
 $('#myModal').modal()  
 </script>
share|improve this question

1 Answer

up vote 3 down vote accepted
$('#myModal').modal('hide') 

try this

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

share|improve this answer
This still launched it upon page load. I also tried making the #myModal's display to none, still on page load. – Necro. Dec 12 '12 at 4:27
ok , let me have a look at this. – mpm Dec 12 '12 at 4:27
1  
what about $('#myModal').modal('hide') ? – mpm Dec 12 '12 at 4:29
Perfect! Thanks a bunch, they really should tell you to hide it :p all they say is .modal(options) -_- lol Thanks again man. – Necro. Dec 12 '12 at 4:31
glad i could help , i have edited my answer. – mpm Dec 12 '12 at 4:32
show 3 more comments

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.