Jump to content

Can a div retain a response from ajax moving between pages?


ventix

Recommended Posts

Hello all

 

I have managed to build a live search using Ajax, php and a database. When the results are returned  I click on one of the returned records, to view more information about it. However when I go back the search results have disappeared. Is there a way for the div to retain the results until a new search is done or they leave the website?

You could use javascript for this.

Use window.location.hash to change the url without reloading the page. You can extract that value when the page gets loaded.

Here is an example of changing an url without reloading. click the link and then go back you will notice the url is changed

<html>
<head>
<script>
function changeHash(value){
window.location.hash =value;
}
</script>
</head>
<body>
<input type="text" id="text" onkeyup="changeHash(this.value)" />
<a href="http://www.phpfreaks.com">go to page</a>
</body>
</html>

Dont put in the result in your url put the search string in the url so it's shorter. Other ways could be using an ajax session or cookies but using the hash value is prob the way to go with this

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.