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

Popular posts from this blog

jQuery Mobile app not scrolling in Firefox -

c++ - How to add Crypto++ library to Qt project -

php array slice every 2th rule -