javascript - Disable hide modal window when click out of the modal jquery -
i have modal div:
<div class="modal fade" id="window_modal"> ..... </div>
but when click out of window, modal window close, , want windows close using close button inside modal window.
give modal data-attribute backdrop="static"
e.g.
<div class="modal fade" id="window_modal" data-backdrop="static"> ..... </div>
all find here: http://getbootstrap.com/javascript/#modals-usage
Comments
Post a Comment