vote up 3 vote down star

I have an element with an onclick method.

I would like to activate that method (or: fake a click on this elemnt) within another function.

Is this possible?

flag

8 Answers

vote up 8 vote down check

If you're using JQuery you can do:

$('#elementid').click();
link|flag
vote up 2 vote down

I could be misinterpreting your question, but, yes, this is possible. The way that I would go about doing it is this:

var oElement = document.getElementById('elementId');   // get a reference to your element
oElement.onclick = clickHandler; // assign its click function a function reference

function clickHandler() {
    // this function will be called whenever the element is clicked
    // and can also be called from the context of other functions
}

Now, whenever this element is clicked, the code in clickHandler will execute. Similarly, you can execute the same code by calling the function from within the context of other functions (or even assign clickHandler to handle events triggered by other elements)>

link|flag
vote up 2 vote down

This is a perfect example of where you should use a javascript library like Prototype or JQuery to abstract away the cross-browser differences.

link|flag
vote up 1 vote down

@Vilx-

Firefox uses element.dispatchEvent.

The page includes a sample simulateClick().

link|flag
vote up 1 vote down

For IE there is fireEvent() method. Don't know if that works for other browsers.

link|flag
vote up 0 vote down

just call "onclick"!

here's an example html:

<div id="c" onclick="alert('hello')">Click me!</div>
<div onclick="document.getElementById('c').onclick()">Fake click the previous link!</div>
link|flag
Unfortunately this will not fill the event object... – Vilx- Dec 7 '08 at 12:30
he didn't mention that he wants to fill an "event" object .. just that he wants to call the method. Plus I'm not sure what evernt object are you talking about! – hasen j Dec 7 '08 at 12:43
vote up 1 vote down

I haven't used jQuery, but IIRC, the first method mentioned doesn't trigger the onclick handler.

I'd call the associated onclick method directly, if you're not using the event details.

link|flag
vote up 6 vote down

Once you have selected an element you can call click()

document.getElementById('link').click();

see: https://developer.mozilla.org/En/DOM/Element.click

I don't remember if this works on IE, but it should. I don't have a windows machine nearby.

link|flag

Your Answer

Get an OpenID
or

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