Dialog (dialog)
Dialog allows a user to click on a link and it will show a dialog window with specified text.

How to Configure
-
To enable create a link to show the dialog. This can be anywhere on the page.
<a data-sse-dialog="dialog-text" href="#">Click Here</a>The value of
data-sse-dialogshould be the id of the div surrounding the dialog created below. -
Add the dialog. This can be anywhere on the page as well.
<div id="dialog-text"> <div class="header"> Title of the Dialog Window </div> <div class="content"> <p> The text of the dialog window. </p> </div> </div>