Jump to content

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


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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.