javascript - The show event is not fired using bootbox dialog -
i'd catch show event bootbox.confirm dialog css adjustments dialog before showing that.
i tried things followings didn't succeed:
$(document).on("show", function (event) {...}); $(document).on("show", ".bootbox", function (event) {...}); $(document).on("show.bs.modal", function (event) {...});
they aren't global events. restricted plugin.
so should use them within context.
like:
$('div').modal({ show: function(){ // } });
Comments
Post a Comment