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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T19:43:49+00:00 2026-05-12T19:43:49+00:00

I have a timer in my JavaScript which needs to emulate clicking a link

  • 0

I have a timer in my JavaScript which needs to emulate clicking a link to go to another page once the time elapses. To do this I’m using jQuery’s click() function. I have used $().trigger() and window.location also, and I can make it work as intended with all three.

I’ve observed some weird behavior with click() and I’m trying to understand what happens and why.

I’m using Firefox for everything I describe in this question, but I am also interested in what other browsers will do with this.

If I have not used $('a').bind('click',fn) or $('a').click(fn) to set an event handler, then calling $('a').click() seems to do nothing at all. It does not call the browser’s default handler for this event, as the browser does not load the new page.

However, if I set an event handler first, then it works as expected, even if the event handler does nothing.

$('a').click(function(){return true;}).click();

This loads the new page as if I had clicked the a myself.

So my question is twofold: Is this weird behavior because I’m doing something wrong somewhere? and why does calling click() do nothing with the default behavior if I haven’t created a handler of my own?


As Hoffman determined when he tried to duplicate my results, the outcome I described above doesn’t actually happen. I’m not sure what caused the events I observed yesterday, but I’m certain today that it was not what I described in the question.

So the answer is that you can’t "fake" clicks in the browser and that all jQuery does is call your event handler. You can still use window.location to change page, and that works fine for me.

  • 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-12T19:43:49+00:00Added an answer on May 12, 2026 at 7:43 pm

    Interesting, this is probably a “feature request” (ie bug) for jQuery. The jQuery click event only triggers the click action (called onClick event on the DOM) on the element if you bind a jQuery event to the element. You should go to jQuery mailing lists ( http://forum.jquery.com/ ) and report this. This might be the wanted behavior, but I don’t think so.

    EDIT:

    I did some testing and what you said is wrong, even if you bind a function to an ‘a’ tag it still doesn’t take you to the website specified by the href attribute. Try the following code:

    <html>
    <head>
    
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
     <script>
      $(document).ready(function() {
       /* Try to dis-comment this:
       $('#a').click(function () {
        alert('jQuery.click()');
        return true;
       });
       */
      });
      function button_onClick() {
       $('#a').click();
      }
      function a_onClick() {
       alert('a_onClick');
      }
     </script>
    
    </head>
    <body>
     <input type="button" onclick="button_onClick()">
     <br>
     <a id='a' href='http://www.google.com' onClick="a_onClick()"> aaa </a>
    
    </body>
    </html> 
    

    It never goes to google.com unless you directly click on the link (with or without the commented code). Also notice that even if you bind the click event to the link it still doesn’t go purple once you click the button. It only goes purple if you click the link directly.

    I did some research and it seems that the .click is not suppose to work with ‘a’ tags because the browser does not suport “fake clicking” with javascript. I mean, you can’t “click” an element with javascript. With ‘a’ tags you can trigger its onClick event but the link won’t change colors (to the visited link color, the default is purple in most browsers). So it wouldn’t make sense to make the $().click event work with ‘a’ tags since the act of going to the href attribute is not a part of the onClick event, but hardcoded in the browser.

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

Sidebar

Ask A Question

Stats

  • Questions 205k
  • Answers 205k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I don't believe Flash lets you select links with a… May 12, 2026 at 8:53 pm
  • Editorial Team
    Editorial Team added an answer The call to MethodX from MethodA qualifies it as recursive… May 12, 2026 at 8:53 pm
  • Editorial Team
    Editorial Team added an answer I do not know Visio, but I have been using… May 12, 2026 at 8:53 pm

Related Questions

I'd like to know the simplest way, in Java, to get a list of
I have a JavaScript widget (a piece of embedded JS and HTML code) that's
I haven't started writing any code for this program, but here's what I need
I have a C++ desktop application (written in wxWidgets) and I want to add
I am working on a ASP.net application written in C# with Sql Server 2000

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.