Possible Duplicate:
How can I simulate an anchor click via jquery?
For some reason I thought this would be really easy. Here's my code:
$('#someDamnedDiv').live('click', function () {
$('a', this).trigger('click');
});
What the Sam Hill is wrong with my function?