Say I have 2 links a1 and a2, and a2 is hidden. When the user clicks on a1, I want to simulate the clicking of a2. How can this be done with jQuery?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
It depends on what you mean by "simulate the clicking of a2". Assuming that
If you want to trigger it without bubbling the event or triggering the default behavior, do this:
But if you wanted to actually visit the associated
or
|
|||
|
|
|
The other answers cover your options as far as solutions go, but to improve your understanding of how jQuery works particular regarding event binding for clicks, I recommend looking over the jQuery API documentation for click(). |
|||
|
|