divの中のリンクを全体のリンクとさせる

<script>
$('div.link').click(function() {
location.href = $(this).find('a').attr('href');
});
</script>