I just wanted to if there is a way to pass value that has been displayed in DIV id to another page
My data is called form another page and displayed here in the given code
<div id="res" style="float: left; Padding-left: 3px; padding-right:13px;line-height: 15px;">
......
</div>
and i want to pass the value being displayed here to another page this is a php page.
Thanks…
Sure you can.
Then, redirect the user to the next page with the data in a query string:
then in the second page you can parse the URL (in JQuery):
Or, you can get the parameter by using
$_GET['resval']in PHP.Referenced: How to pass values from one page to another in jQuery