.fancybox の「onclose」属性にある URL にリダイレクトしようとしていますが、うまくいきます。何か案は?コードは以下です。注: モーダルは正常に表示されますが、ユーザーが上部の「x」を押すと... 画面は空白になります。
<script type="text/javascript">
showModal();
function showModal() {
var url = document.URL;
var popUp = '//local.meau.com/Support-Center/Service-Notifications/Search-Tips.aspx';
var site = popUp;
$(document).ready(function () {
$.fancybox({
'width': 500,
'height': '55%',
'autoScale': false,
'transitionIn': 'none',
'transitionOut': 'none',
'type': 'iframe',
'href': site,
'showCloseButton': true,
'onClose' : function(){location.href = "http://local.meau.com/Support-Center.aspx";}
});
});
}
</script>