If a user clicks on an image I want that to simultaneously trigger a click on a specified iFrame as well. Is that possible? The image and iFrame are located on the same page
I think you needed something like this:-
$("#image").click(function(){ var $iframe = $("#iframe").contents(); $("body", $iframe).trigger("click"); });