How to use Bootstrap modal in Joomla 3.1 ? I have Bootstrap loaded and when I try to initialise
$('#confirmDelete').modal();
my modal window I get $(...).modal is not a function
Easiest way I have found is to use the data attribute, data-toggle="modal". An example would be:
<a href="#my-modal" data-toggle="modal" class="btn">Launch modal</a>