Hello everyone,
I want to open pop up window through jquery.
My jquery code is as follows:
jQuery.ajax({
url: "/signUp/twit",
type: "post",
data: "ajax=true&twit terid=" + jQuery("#profil eTab #twitterid").va l()",
success: function(respon se,status){
alert(1);
}
});
here inside success call back i want to open pop up window on some specific response.
Could someone give me an idea how to do that.And is it possible to use window.open()ja vascript function in jquery to open new pop up window.Because as per my knowledge we can use js functions insside jquery,but window.open() not working.
Thanks
I want to open pop up window through jquery.
My jquery code is as follows:
jQuery.ajax({
url: "/signUp/twit",
type: "post",
data: "ajax=true&twit terid=" + jQuery("#profil eTab #twitterid").va l()",
success: function(respon se,status){
alert(1);
}
});
here inside success call back i want to open pop up window on some specific response.
Could someone give me an idea how to do that.And is it possible to use window.open()ja vascript function in jquery to open new pop up window.Because as per my knowledge we can use js functions insside jquery,but window.open() not working.
Thanks
Comment