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

  • Home
  • SEARCH
  • 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 1086457
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T22:48:57+00:00 2026-05-16T22:48:57+00:00

Not sure how to phrase this question exactly, but I’ll give it a shot.

  • 0

Not sure how to phrase this question exactly, but I’ll give it a shot. (If you have a suggestion for how to phrase it better so others can find it, tell me and I’ll edit it).

I want to know the best practices for handling clicks on a page that are then processed using AJAX. I have been temporarily using code that looks like this in the HTML:

<a href="#clickable">Click me!</a>

And in jQuery I handle the clicks by binding click to the href.

Of course, I know that you should not be making this known to the user.

So how should I be handling these clicks?

  • 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-16T22:48:57+00:00Added an answer on May 16, 2026 at 10:48 pm

    You should make your HTML so that it works if Javascript is off. Don’t mix content with functionality, so inline Javascript is usually not a good solution.

    So, in your case:

    <a href="some/working/path.php" class="ajax">Meaningful description!</a>
    

    Then you can add a class (or check the text inside, or something else) to handle it on the Javascript side.

    Make sure to use event.preventDefault() to stop the page from changing if Javascript is enabled.

    So the jQuery would be

      // Target only anchors with class "ajax"
    $("a.ajax").click(function(event) { 
    
        // Handle AJAX etc here.
        // ...
    
        event.preventDefault(); // <== Don't navigate away from page
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Not sure how to phrase this question, but here is the problem. I have
First, this question may have been asked before, but I'm not sure what phrase
I'm not sure exactly how to phrase this, but here goes: I have a
I have an interesting question, but I'm not sure exactly how to phrase it...
Not sure how to ask this, but i'll give it a try: I have
Not quite sure how to phrase this, but will do my best. I have
Background: I'm not sure exactly how to phrase this question, so this is the
I am not sure how to phrase this question so I'll give an example:
Not completely sure how I can phrase this question best. How can I compare
I'm not quite sure how to phrase this question, but I couldn't find any

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.