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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T12:18:14+00:00 2026-06-07T12:18:14+00:00

I am trying to have a function done to all links on a page

  • 0

I am trying to have a function done to all links on a page and then have the function undone if a condition is met.

$('a').click(function(){
    //some function
  if ( /*some condition*/ ) {
    $(this).//undo above function
  }
});

Note: I am not trying to use unbind(), I am trying to have the function undo itself. I apologize in advance if this is a bit unclear – please ask me anything you are unsure about. Thanks.

  • 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-07T12:18:16+00:00Added an answer on June 7, 2026 at 12:18 pm

    Have you tried:

    $('a').click(function(){
        //some function
      if ( /*some condition*/ ) {
        $(this).click(function() { return false; });
      }
    });
    

    Edit: There is another way that is fairly common that didn’t really occur to me at first. Since you’re doing this to all of your <a> tags, you can use the delegate and undelegate functions to register the event. In more modern versions of jquery this is done with the .on and .off methods:

    $("body").on("click", "a", function() {
        //some function
        if ( /*some condition*/ ) {
            $(this).off("click");
        }
    });
    

    http://api.jquery.com/delegate/
    http://api.jquery.com/undelegate/
    http://api.jquery.com/on/
    http://api.jquery.com/off/

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

Sidebar

Related Questions

I want to have one callback function after actions are done, I'm trying something
Trying to get a list of all substrings currently I have a function but
I'm trying to have a HTML5 page that includes a customer signature box. This
I am trying to learn JavaScript... I have function like, I take the format
I have a function that I'm trying to optimize at the moment but I'm
Hi I have a function in R that I'm trying to optimize for performance.
I have a function with a chain of filters in jQuery. I am trying
I have a function hitting a JSON file, and I am trying to get
I currently have a function where I'm trying to refer to the $id in
I have a function that creates a course. I am trying to get the

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.