Wednesday, 26 July 2017

Prevent Bootstrap Modal from disappearing when clicking outside or pressing escape?

If using JavaScript then:
<script>
$('#myModal').modal({
    backdrop: 'static',
    keyboard: false
})
</script>
and if HTML:

<a data-controls-modal="your_div_id" data-backdrop="static" data-keyboard="false" href="#">

No comments :

Post a Comment