Bootstrap modal how to set backdrop?

1.3k Views Asked by At

I'm using bootstrap v3.2.0, i wish to change the backdrop to false after the modal have already initialized

i have try to use:

$('#myModal').removeData("modal").modal({backdrop: 'static', keyboard: false});

but is not working, please help

2

There are 2 best solutions below

0
On

found answer

$('#modal').data('bs.modal').options.backdrop = 'static';
0
On

You can try this compact way:

$('#modal').modal({ backdrop: "static" });