twitter-bootstrapmodal-dialogjoomla3.1

Bootstrap modal in joomla 3.1


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


Solution

  • 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>