We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
PHP
$id = 'my-modal'; $content = 'This is the modal body'; $title = 'This is the title of the modal'; $modal = new \Modal($id, $content, $title); // wider modal // $modal->sizeLarge(); // slimmer modal // $modal->sizeSmall(); $modal->addButton('<button id="do-something">Do something</button>'); $template = \Template(array('modal'=>$modal), 'template.html'); echo $template;
template.html
<button id="open-modal">Open Modal</button> <?=$modal?>
Javascript
$(window).load(function() { $('#open-modal').click(function(){ $('#my-modal').modal('show'); }); });