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 8293967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T14:01:24+00:00 2026-06-08T14:01:24+00:00

How is it possible to make live-search with hashes? Now I have a simple

  • 0

How is it possible to make live-search with hashes?
Now I have a simple jquery search:

 $(function(){
/// Start searching
       $("form#search-form").submit(function(e){     
          var hash = 'q=' + encodeURI(document.getElementById('q').value); 
          window.location.hash = hash;
          e.preventDefault();
          $("#results").fadeOut();
            $.ajax({
               type:"GET",
               data: $(this).serialize(),
               url: "search.php",
               success: function(msg){
                      $("#results").html(msg).fadeIn();      
                                     }
                    });     
        }); 
}); 

As you see, I have added here

 var hash = 'q=' + encodeURI(document.getElementById('q').value); 
 window.location.hash = hash;

to have search-input in hash. So my idea is to type “http://url/#q=word” and have results for “word”. Currently my “hash function” is useless, it performs nothing – just adds value to address bar. How could I make jquery perform in that way?

I tried to add

 if (window.location.hash != "") {
}

but it doesn’t help. Or I used to do that wrongly.

  • 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-06-08T14:01:27+00:00Added an answer on June 8, 2026 at 2:01 pm

    So.. may be it is too difficult, but it works:

    $(function(){
        $("form#search-form").submit(function(e){     
            e.preventDefault();
            var hash = 'search=' + $('#q').val() + '&lang=' + $('.lang:checked').val(); // radio-buttons have class="lang"
            window.location.hash = hash;
            search();
        });
    
        if (window.location.hash != "") {
            search()
        }
    
        function search() {
            var hash_arr = window.location.hash.substr(1).split('&'),
                values = new Array(),
                i = 0,
                json = '{';
    
            for (var key in hash_arr) {
                values = hash_arr[key].split('=');
                if (i++ != 0) json += ',';
                json += '"' + values[0] + '":"' + values[1] + '"';
            }
    
            json += '}';
    
            $("#results").fadeOut();
            $.ajax({
                type:"POST",
                data: { data : json },
                url: "test2.php",
                success: function(msg){
                    $("#results").html(msg).fadeIn();      
                }
            });
        }
    });
    

    In PHP:

    $data = (array)json_decode($_POST['data']);
    $search = $data['search'];
    $language = $data['language'];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible using jQuery, or any other language, to make an input's value
I have: $(#option1).live(click, function(){ $(.active).removeClass('active'); $(this).addClass('active'); $(#main).load(option1.php, function(){ }); }); and the script inside
I have a live function that triggers the 'openwindow' function and I need to
I can't make $.live() work with load event, like: $(.animate).live(load, function(){ $(this).hide().fadeIn(1000); }) Details:
does anyone know how to make live javascript time running.. i have this php
Is it possible to make an anchor tag behave like a .submit (with certain
I have many iOS applications live on AppStore. Now for next version of apps,
Is it possible make some handler that will do something when user shutdown computer
Is it possible make an activity, that will lock the android device? That device
Possible Duplicate: Make error: missing separator I am so stressed out by this silly

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.