Reputation: 8299
I am opening a pop-up dialog like-
<a href="routeEdit.php" data-role="button" data-icon="gear" data-inline="true" data-theme="b" data-transition="pop" data-rel="dialog">Edit</a>
Now, from that page, calling a method submit().
How will i close the pop-up from submit() method- without redirecting to main page?
Upvotes: 5
Views: 7873
Reputation: 4667
If you use pop in jQ Mobile 1.3.0,then
$("#popupLogin").popup('close');
wourld be used.
Upvotes: 8
Reputation: 13787
$('#myDialog').dialog('close');
Try above coding. It's working for me.
Upvotes: 10