I can't figure out how to implement confirm dialog with bootstrap modal, this is my code that doesn't work:
<div id="id" class="modal hide">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>title</h3>
</div>
<div class="modal-body">
<p>confirm message</p>
</div>
<div class="modal-footer">
<button data-dismiss="modal" class="btn">No</button>
<button id="id-confirm" class="btn btn-primary">Yes</button>
</div>
</div>
<a id="a" href="http://example.com">link</a>
<script type="text/javascript">
var confirmed = false;
var modal = $('#id');
var clickee = $('#a');
clickee.click(function() {
if (!confirmed) {
modal.modal('show');
return false;
}
});
$('#id-confirm').click(function() {
confirmed = true;
clickee.click();
modal.modal('hide');
});
</script>
When I click on the link link, the dialog pops up, but when I confirm it, no redirect happens, when I click on the link link again, I get redirected.
I could just redirect to the href of the link, I know that, but I want to make it reusable, instead of link (a element) I could also want to use button or define onclick event on the button.
Thanks for your answers.