i want to pass two values(parameters) from one html to another html without displaying the values in url(i.e same like post method). How to get the value in 2nd html using javascript or ajax or jquery .
example :
client.html
<html>
<body>
<form id="Form1" action="http://xyz/plus/server.html" method="post">
<table width="40%">
<tr><td>Country:</td><td><input type="text" name="country" id="country" /> </td></tr>
<tr><td>Language:</td><td><input type="text" name="lang" id="lang" /></td></tr>
<tr><td align="center"><input type="submit" /></td></tr>
</table>
</form>
</body>
</html>
server.html
<script>?? </script>
how to get data in server.html file using javascript or ajax or jquery . plz help me.... Thanks in advance