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.

I want to try and find a way to spoof a click with jQuery/Javascript.

Basically I have an image wrapped in an tag. When I click this I want the browser to think it has clicked a different link and run that instead.

I have lightbox activated on the click of $('.gallery a') I want to click one image but have lightbox think I've clicked another and open that up in the lightbox instead.

share|improve this question

5 Answers

up vote 1 down vote accepted

Example: http://jsfiddle.net/jlowgren/dn22S/

share|improve this answer

Try doing this.

$('.gallery a').click();
share|improve this answer

just do $('#selector').click()

share|improve this answer

Just call the click event.

in this case

$(".gallery a").click();
share|improve this answer
event.preventDefault();
$("other_link").trigger("click");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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