Last active
August 29, 2015 14:13
-
-
Save tomfa/12bf7651d6a346eb2942 to your computer and use it in GitHub Desktop.
jQuery confirm dialog using Bootstrap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* jQuery confirm modal using bootstrap 3.0 (might work with other, shrug) | |
* | |
* Usage: | |
* var otherFunction = function(){ | |
* funkyDialogBox( | |
* "Will you marry me", | |
* function(){ console.log('She said YES! :D'}, | |
* function(){ console.log('She said no :(') | |
* } | |
* } | |
*/ | |
var funkyDialogBox = function(message, confirmCallback, cancelCallback) { | |
var unbind = function(){ | |
$('#dataConfirmModal').unbind('hidden.bs.modal', wrapperCancel); | |
$('#dataConfirmOK').unbind(); | |
} | |
var wrapperConfirm = function(){ | |
if (typeof confirmCallback !== 'undefined') | |
confirmCallback() | |
unbind(); | |
$('#dataConfirmModal').modal('hide'); | |
}; | |
var wrapperCancel = function(){ | |
if (typeof cancelCallback !== 'undefined') | |
cancelCallback() | |
unbind(); | |
} | |
if (!$('#dataConfirmModal').length) { | |
$('body').append('<div id="dataConfirmModal" class="modal fade"><div class="modal-dialog"><div class="modal-content"><div class="modal-header"><button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true×</span></button><h4 class="modal-title">Please Confimt</h4></div><div class="modal-body text-center"><p>Er du sikker?</p></div><div class="modal-footer"><button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button><button type="button" id="dataConfirmOK" class="btn btn-primary">Confirm</button></div></div></div></div>'); | |
} | |
unbind(); | |
$('#dataConfirmModal').find('.modal-body').text(message); | |
$('#dataConfirmOK').click(wrapperConfirm); | |
$('#dataConfirmModal').modal({show:true}) | |
$('#dataConfirmModal').on('hidden.bs.modal', wrapperCancel); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment