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?

Link to comment
Share on other sites

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>

Link to comment
Share on other sites

Thanks for the reply, I had a little experiment with what you suggested but, its not quite what I would like. Having all the results go into the URL looks weird and messy is there anyother way to do what I want?

 

 

Link to comment
Share on other sites

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.