Thank you Sven! It's been some time that it was answered, but I may say, your tip showed me the right way. I just think you've miswrite your answer, then for completeness sake, here is what worked for me:
<script src="bootstrap-modal.js" type="text/javascript"></script> <script src="bootstrap.js" type="text/javascript"></script> instead of <script src="bootstrap.js" type="text/javascript"></script> <script src="bootstrap-modal.js" type="text/javascript"></script> Then again, thank you! Em quinta-feira, 16 de fevereiro de 2012 10h20min07s UTC-3, Sven escreveu: > > Okay found the issue on my side... > > I used: > > <script src="bootstrap-modal.js" type="text/javascript" /> > <script src="bootstrap-transition.js" type="text/javascript" /> > > instead of: > > <script src="bootstrap-modal.js" type="text/javascript"></script> > <script src="bootstrap-transition.js" type="text/javascript"></ > script> > > Crazy stuff ;) > > On 16 Feb., 14:11, Sven <[email protected]> wrote: > > I'm having the same problems and do not know where the problem is. > > Hope somebody can help. > > > > Same issue, Bootstrap 2.0, jquery 1.7.1 > > > > Adding all bootstrap libraries didn't solve that problem. The dialog > > just doesn't want to appear. > > > > Regards > > > > On 8 Feb., 02:01, Sean Mills <[email protected]> wrote: > > > > > > > > > > > > > > > > > Not sure if that helps, but I think you only need the attribute > > > href="#deleteConfirmation", since you are using an anchor tag to > > > launch the modal. > > > > > On Tue, Feb 7, 2012 at 7:56 PM, ChrisW <[email protected]> wrote: > > > > Thanks, but I've already tried that. Attached is code where I've > added the > > > > "hide fade" classes and linked in the bootstrap-transition.js. The > dialog > > > > doesn't appear on page load, but it also doesn't appear on button > click. > > > > > > Chris > > > > > > <body> > > > > <a class="btn btn-danger" data-toggle="modal" > > > > data-target="#deleteConfirmation" href="#deleteConfirmation">Delete > > > > Report</a> > > > > <div class="modal hide fade" id="deleteConfirmation"> > > > > <div class="modal-header"> > > > > <a class="close" data-dismiss="modal">×</a> > > > > <h3> > > > > Confirm report deletion</h3> > > > > </div> > > > > <div class="modal-body"> > > > > <p> > > > > Are you sure you want to delete this report? This > action cannot > > > > be undone.</p> > > > > </div> > > > > <div class="modal-footer"> > > > > <a href="#" class="btn btn-danger">Delete</a> > > > > <a href="#" class="btn">Cancel</a> > > > > </div> > > > > </div> > > > > <script src="jquery-1.7.1.min.js" type="text/javascript" /> > > > > <script src="bootstrap-modal.js" type="text/javascript" /> > > > > <script src="bootstrap-transition.js" type="text/javascript" /> > > > > </body> > > > > </html> > > > > > -- > > > Regards, > > > Sean Mills, Co-Owner > > > Grantwood Technology LLC > > > 6909 Engle Rd Ste 22 > > > Middleburg Heights OH 44130 > > > Phone: 440-239-1885 > > > Fax: 440-378-5931 -- You received this message because you are subscribed to the Google Groups "twitter-bootstrap" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
