A modal control displays information or interactive content that must be dismissed before further interaction with the background page can occur.
<a href="#"
class="accModal"
data-src="path/file.html#modalIdContent"
data-role="ContentRole"
id="uniqueID"
> ... </a>
Or
<a href="#"
class="accModal"
data-internal="modalIdContent"
data-role="ContentRole"
id="uniqueID"
> ... </a>
<div class="hidden">
<div id="modalIdContent">
...
</div>
...
</div>
$A.reg.uniqueID.open();
// All other AccDC API properties and methods are similarly available.