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

  1. how make success button link google, danger button link yahoo.com , click me button close box?

  2. 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

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -