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?
|
|
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?
|
|||
|
|
|
|
If you're using JQuery you can do:
|
||
|
|
|
|
I could be misinterpreting your question, but, yes, this is possible. The way that I would go about doing it is this:
Now, whenever this element is clicked, the code in |
||
|
|
|
|
This is a perfect example of where you should use a javascript library like Prototype or JQuery to abstract away the cross-browser differences. |
||
|
|
|
|
|
||
|
|
|
|
For IE there is fireEvent() method. Don't know if that works for other browsers. |
||
|
|
|
|
just call "onclick"! here's an example html:
|
||
|
|
I haven't used jQuery, but IIRC, the first method mentioned doesn't trigger the I'd call the associated |
||
|
|
|
|
Once you have selected an element you can call 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. |
||
|
|