I am trying to activate the click event of an element within an iFrame (a standard twitter follow button) when clicking on an element within my main page.
Here's the code I'm trying to use which does not work...
$(".twit-test").click( function() {
$('.twitter-follow-button').contents().find('#follow-button').click();
return false;
});