Include HTML code in BootStrap Modal Dialog

3.2k Views Asked by At

I want to make use of Boot Strap Modal(http://nakupanda.github.io/bootstrap3-dialog/), I have included Bootstrap Modal Scripts and Css in my HTML and the Bootstrap Dialog works fine. Now my question is how can I include my html code in the modal dialog. In the examples(http://nakupanda.github.io/bootstrap3-dialog/) it shows to include the HTML code in "message" property of modal. But I want to use my existing HTML in modal without rewriting the html code in JS file.

1

There are 1 best solutions below

0
On BEST ANSWER

You could save the markup in a template file and

BootstrapDialog.show({
    message: $('<div></div>').load('template.html')
});

or reuse some already existing HTML

BootstrapDialog.show({
    message: $('#element').html()
});