I'm trying to make a div have an on click function that opens the link assigned to an <a> inside of it. I've tried a few variations of this, but nothing seems to be working correctly.
My jQuery
$('div#task_list').delegate("div.task_bucket", "click", function() {
$(this + ' div.task_name a.show_task_link').click();
})
And my HTML
<div class="grid_3 border_box task_bucket">
<div class="date border_box">
November 16, 2012
<span class="comments">3</span>
</div>
<div class="task_name">
<a href="/tasks/165" class="show_task_link" data-remote="true" id="165">Lorem Ipsum Dolor sit amen...</a>
</div>
</div>