[php]
jQuery(document).ready(function($) {
/*—————————-
make entire div clickable
—————————–*/
$(".myBox").click(function(){
window.location=$(this).find("a").attr("href");
return false;
});
});
[/php]
[php]
<div class="myBox">
blah blah blah.
<a href="https://google.com">link</a>
</div>
[/php]





