jquery:snippet:click child when parent is clicked
$('.parent').click(function(){ if ($(this).has('click-child')) { $(this).find('.child').click(); }; });