Skip to content

Instantly share code, notes, and snippets.

@swapnilshrikhande
Created September 25, 2014 16:41
Show Gist options
  • Save swapnilshrikhande/ddc040bf528990674d07 to your computer and use it in GitHub Desktop.
Save swapnilshrikhande/ddc040bf528990674d07 to your computer and use it in GitHub Desktop.
boostrap Dialog with url as input dat
jQuery.ajax({type:'POST',url:$(this).attr('href'),success:function(data) {
bootbox.dialog({
message: data,
title: "Custom title",
buttons: {
success: {
label: "Success!",
className: "btn-success",
},
}
});
});
//cdnjs.cloudflare.com/ajax/libs/bootbox.js/4.3.0/bootbox.min.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment