I have form with username and password. when i click on submit buttom then username and password will pass to another page and open new window.
i know that i will pass this data by GET request like
window.open('url.php?unm=username&pass=password','_blank');
but in my case i don't want to display data in url. I want to use POST Method To get data in url.php page.
So How to do this. Please Help.. Thanks For Advance
Below Code I use :
$.post("url.php?unm=username&pass=password",function(data){
$("#form").hide();
});