Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5994859
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T23:52:39+00:00 2026-05-22T23:52:39+00:00

I have a search script like Google Instant search which displays the relevant results

  • 0

I have a search script like Google Instant search which displays the relevant results as you type. It is written in JSON and uses JavaScript to make a URL of the result as the user types. However, if you click on a result and then come back to the SERP there are no results displayed. You have to start your search again. Why could this be? I hope you can understand what I am trying to describe.

Here is my HTML code:

<input type="text" id="search" name="q">
<div id="result"></div>

Here is my JSON code:

$(document).ready(function(){
    $("#search").keyup(function(){
        var search=$(this).val();
        var keyword=encodeURIComponent(search);
        var yt_url='http://api.search.live.net/json.aspx?JsonType=callback&JsonCallback=?&Appid=642636B8B26344A69F5FA5C22A629A163752DC6B&query='+keyword+'&sources=web';

        $.ajax({
            type:"GET",
            url:yt_url,
            dataType:"jsonp",
            success:function(response){
                $("#result").html('');
                if(response.SearchResponse.Web.Results.length){
                    $.each(response.SearchResponse.Web.Results, function(i,data){
                        var title=data.Title;
                        var dis=data.Description;
                        var url=data.Url;
                        var final="<div class='webresult'><div class='title'><a href='"+url+"'>"+title+"</a></div><div class='desc'>"+dis+"</div><div class='url'>"+url+"</div></div>";
                        $("#result").append(final);
                    });
                }
            }
        });
    });
});
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T23:52:39+00:00Added an answer on May 22, 2026 at 11:52 pm

    If i understand you correctly you are doing a full page load to go to a result, and when you go back you do another full page load.

    Basically if you want to persist the search results over pageloads you will have to store the searchquery in session scope or as a cookie, and when the session/cookie is present the javascript code will have to issue the search as if it was typed in the searchfield.

    So when go you click on a result, and you go back, the javascript it smart enough to know that this is a returning user who previously did a search. And populate the same results into the DOM.

    DOM changes are NOT persisted over pageloads.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a search script like Google Instant search which displays the relevant results
I have a search suggestion script written in jQuery which uses the jQuery framework
I have a Google Instant style search script written in jQuery. When a user
I have a Google Instant style search script written in jQuery. When a user
I have a Google Instant style search script written in jQuery. When a user
I have a PHP search suggestion script which uses MySQL as its back-end. I
I have a PHP search suggestion script which uses a MySQL database as its'
I am using the simple Google API to display search results. I would like
I have a jQuery text box autocomplete script which uses a PHP script to
I have a search script written in jQuery. To submit a query a user

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.