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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T02:57:15+00:00 2026-05-19T02:57:15+00:00

Most of the jquery deep linking plugins I have seen required me to attach

  • 0

Most of the jquery deep linking plugins I have seen required me to attach ‘#’ to my links. This is an example:

<a href="#page1.html">Page 1</a>

Even twitter does this (however, twitter follows the Google specification for crawlable links using #!, which is also supported by jquery deep linking libraries like Jquery BBQ and Jquery Address).

I turned off Javascript with the new twitter and it does not work. I’m asking this question to know if I can apply deep linking and still have a functional site even with Javascript off.

Thanks in advance!

  • 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-19T02:57:16+00:00Added an answer on May 19, 2026 at 2:57 am

    No – if you want to deep link using AJAX, you’re going to have to make it work this way. The anchor is the only part of the URL that can be updated without the page reloading. It isn’t generally sent to the server either so it’s always handled by the browser.

    One thing you could do is have the actual link in the a tag, then use jQuery to update the link:

    <a href="page1.html" class="ajaxLoad">Page 1</a>
    
    <script>
    $(function(){
      $("a.ajaxLoad").each(function(){ this.href = '#' + this.href })
    });
    </script>
    

    With JavaScript turned off, this will redirect the user to ‘page1.html’ when they click the link. Otherwise, the link is changed to an anchor one and you should be able to pick it up with your deep linking code. The benefit of something like this is that non-JavaScript browsers will be able to use the links correctly (and this includes search engine spiders).


    Edit: Just so you know, there’s a few things you can do rather than use JavaScript to change it. For example, you could attach to the click handler of the links and use load or something to change the area you want to load your page.

    $("a.ajaxLoad").click(function(e){
        e.preventDefault();
        $("#content").load(this.href + ' #content');
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Most jQuery plugins have options like this one for example (cycle): $(ul).cycle({ fx: 'fade',
I have tried to make this simple Jquery game http://www.abkeya.com/2011/02/14/simple-jquery-game/ Most of the parts
I have the most basic jquery function of them all, but I couldn't find
I have a jQuery select which works in most browsers axcept IE. The code
As many of you know, most jQuery (or javascript, for that matter) plugins you
What are the most Facebook like jQuery plug-ins, I would love to have a
I have gone through most similar JQuery posts relating to hiding parent containers but
Most of the jQuery and jQuery UI examples that I find have the scripts
We've all seen people who do this: jQuery('a').each(function(){ jQuery(this)[0].innerHTML += ' proccessed'; }); function
I have tried so many ways/plugins, and the one that attracts me the most

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.