Assuming your original HTML looks something like this, you should add a data parameter containing a link that will follow when you click on the div:
<div class="link" data-url="http://www.google.com"> <span class="div"> <span class="h1"></span> <span class="h2"></span> <span class="p"></span> </span> </div>
Then you can attach the click handler to the div :
$('.link').click(function() { window.location.assign($(this).data('url')); });
Finally, be sure to add the cursor attribute in the CSS so that it is obvious that the div can be clicked:
.link { cursor: pointer; }
source share