jquery - How do i edit a Javascript / Bootbox/ Bootstrap confirm window? -
i have simple bootbox / javascript confirm window at:
https://www.guard-gate.com/test2/index.html
how make success button link google, danger button link yahoo.com , click me button close box?
how change position of window in middle of page?
you try setting modal in middle:
var windowheightcalc = $(window).height() / 2, modalheightcalc = $('.modal-content').height(); $('.modal').css({ 'margin-top': [windowheightcalc - modalheightcalc, 'px'].join('') });
you don't need bootbox making modal use default bootstrap modal - http://getbootstrap.com/javascript/#modals
you can modify , change links wish. open run:
$('#mymodal').modal('show');
and hide it:
$('#mymodal').modal('hide');
Comments
Post a Comment