ajaxが成功を返した後にのみウィンドウを開きたいです。しかし、うまくいきません。ウィンドウが開きません。以下はサンプルコードです。
$.ajax({
type: "POST",
url : 'checkIfMemberIsAPaidMember.php',
dataType : "html",
success: function(data)
{
var w = window.open('expressInterestPopUp.php','_blank','resizable = no, toolbar = 0,location = no, menubar = 0, height = 400, width = 600, left = 400,top = 300');
},
error : function()
{
alert("Sorry, The requested property could not be found.");
}
});