javascript - Bootstrap: modal.js v3.2.0 Nested modal popup -
i new on bootstrap.
my requirement open modal popup in page. (done). open modal popup required open modal popup. (done).facing issue :
when goes close nested (second) modal popup, both popup closed @ time. because utilize "data-dismiss='modal'" close modals. there other way close nested modal popup.
ah understand! you'll need close modal using javascript :) i've written little function here. add together "closemodal" class button want close modal for.
basically finds parent modal button belongs , closes modal. helps , can alter around if needs be.
$(".closemodal").click(function(){ $(this).closest(".modal").modal("hide") });
http://jsfiddle.net/kjazcz5e/4/
bootstrap provides .modal() jquery plugin allow command modals. take look: http://getbootstrap.com/javascript/#modals
javascript jquery twitter-bootstrap popup bootstrap-modal
No comments:
Post a Comment