I have defined popup div and i want to open on some event, not using href. I have defined popup div like
<div data-role="popup" id="popupDialog" data-overlay-theme="a" data-theme="c" style="max-width:400px;" class="ui-corner-all">
<div data-role="header" data-theme="a" class="ui-corner-top">
<h1>Sample Page</h1>
</div>
<div data-role="content" data-theme="d" class="ui-corner-bottom ui-content">
<a href="#" data-role="button" data-inline="true" data-rel="back" data-theme="c">OK</a>
</div>
</div>
and I tried calling this popup div
$("#popupDialog").popup;
$("#popupDialog").popup();
$("#popupDialog").popup("open");
None of them are not working. Any suggestion.
-Thanks