Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
55
rated 0 times [  59] [ 4]  / answers: 1 / hits: 74906  / 12 Years ago, tue, august 7, 2012, 12:00:00

I have a button on my page that when it is pushed it triggers some javascript functions to occur, and one of those javascript functions to open a bootstrap modal, but I can't seem to get it to work. Here is my code... please help.



 //elsewhere on the form is the button that triggers the javascript
<a href=# class=btn btn-danger id=cancelPObtn data-dismiss=modal>Yes, cancel it</a>

<!-- CANCEL A PO MODAL -->
<div class=modal hide fade id=error-dialog style=display: none;>
<div class=modal-header>
<a class=close data-dismiss=modal>x</a>
<h3>Cancel Purchase Order?</h3>
</div>
<div class=modal-body>
</div>
<div class=modal-footer>
<a href=# class=btn btn-danger btn-modal btn-cancel data-dismiss=modal>Yes, cancel it</a>
<a href=# class=btn data-dismiss=modal>Nevermind</a>
</div>
</div>




$('.btn-danger').click(function(event) {
if(some random conditional statement){
//some stuff happens here
}
else{
//Show form validation error modal-- I know this part is triggered but the modal will not show
$(#error-dialog).modal(show);
}
});

More From » jquery

 Answers
26

you're missing if () { part of the conditional statement


[#83807] Sunday, August 5, 2012, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
havenbilliec

Total Points: 324
Total Questions: 106
Total Answers: 94

Location: Pitcairn Islands
Member since Fri, Oct 15, 2021
3 Years ago
;