jquery モバイル ポップアップに問題があります。データオーバーレイのみを表示します。コンテキストメニューをクリックすると、ポップアップが表示されます。
サイトへのリダイレクトを作成してから、ポップアップを開きます。
$.mobile.changePage("#account"); //redirect
setTimeout(function(){
$('#popupCloseRight').popup("open"); // open the popup but shows only
},100); the grey overlay
HTML コード:
<div data-role="popup" data-overlay-theme="a" id="popupCloseRight" class="ui-content" style="max-width:280px">
<a href="#" data-rel="back" data-role="button" data-theme="a" data-icon="delete" data-iconpos="notext" class="ui-btn-right">Close</a>
<p>Check your E-mail</p>
</div>