vote up 5 vote down star
4

I'm writing some JavaScript code that needs to fire the click event for a link. In Internet Explorer I can do this

var button = document.getElementById('myButton');
button.click();

But this doesn't work in Firefox, and I assume any other browser. In Firefox, I've done this

var button = document.getElementById('myButton');
window.location = button.href;

I feel like this is not the best way to do this. Is there a better way to trigger a click event? Preferably something that works regardless of the type of element or the browser.

flag

6 Answers

vote up 9 vote down check

http://jehiah.cz/archive/firing-javascript-events-properly

function fireEvent(element,event) {
   if (document.createEvent) {
       // dispatch for firefox + others
       var evt = document.createEvent("HTMLEvents");
       evt.initEvent(event, true, true ); // event type,bubbling,cancelable
       return !element.dispatchEvent(evt);
   } else {
       // dispatch for IE
       var evt = document.createEventObject();
       return element.fireEvent('on'+event,evt)
   }
}
link|flag
As a rule of thumb, it's usually better to check standard feature first (such as createEvent) and only then proprietary one (such as createEventObject). – kangax Sep 17 at 3:35
vote up 0 vote down

It's not generally possible, afaik, mozilla has the click() method but for input elements only, not links.

Why don't you just create a function that the button will call on the onClick handler and, whenever you want to 'click' the button call the function instead?

link|flag
vote up 0 vote down

Mozilla has a stricter policy for allowed JS actions/events - I had similar problems with the click() event too. It's disabled on some elements to prevent XSS.

What is wrong with redirecting the browser? This sould work everywhere.

link|flag
vote up 0 vote down

In this particular scenario, I'm using an ASP.NET LinkButton which uses the "href" property of an anchor tag to call a JavaScript function with specific arguments, so the href looks like

javascript:__doPostback('somethingIcantRemember')

I need to use the href for this reason, since I have no real control over whether the event is OnClick or something else. It is auto-generated by the framework.

using window.location doesn't really redirect the browser, it just causes the JavaScript to execute that is on the href.

link|flag
vote up 0 vote down

I wouldn't recommend it, but you can call the onclick attribute of an HTML element as a method.

<a id="my-link" href="#" onclick="alert('Hello world');">My link</a>

document.getElementById('my-link').onclick();
link|flag
vote up 0 vote down

Hey, I don't mean to dig up an old thread - but I was searching for an answer to this same problem as well, and found a function new to jQuery 1.3x (I was having a problem with Ajax Loaded content)

Here's how I implemented it:

HTML

<a class="navlink" href="mypage.html">Online Estimate</a>

LOADED SCRIPT

$(".pagelink").click(function(){
    $(".navlink[href="+$(this).attr("href")+"]").trigger('click');
    return false;
});

LOADED HTML

<a class="pagelink" href="mypage.html">Online Estimate</a>

The function is the 'Trigger Event'...
More details on it here: http://docs.jquery.com/Events/trigger#eventdata

link|flag
That won't work perfectly on every element 100% of the time. For example, it will not navigate to the value in the href, even if you have something there. Chris MacDonald's example will work on every element and trigger the default action, such as navigating to an href for an anchor tag. – Dan Herbert Sep 16 at 21:20
That's very true. I'm using 'return false;', and bypassing the actual link element functionality, as I'm using jQuery and Ajax to load content into the DOM. In this case, it's the least amount of code and the cleanest solution - but in many other cases as pointed out by Dan Herbert, Chris MacDonald's would be the preferred choice. – Jordan Rynard Sep 16 at 22:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.