non dismisal modal bootstrap

Solutions on MaxInterview for non dismisal modal bootstrap by the best coders in the world

showing results for - "non dismisal modal bootstrap"
Alastair
19 Mar 2019
1
2
3If using JavaScript then:
4<script>
5$('#myModal').modal({
6    backdrop: 'static',
7    keyboard: false
8})
9</script>
10
11or in HTML:
12
13<a data-controls-modal="your_div_id" data-backdrop="static" data-keyboard="false" href="#">
14
15