No worries.

HTML:
Code:
<div class="inner-link">
  Go to <a href="https://google.com">Google</a>
</div>
jQuery:
Code:
$(".inner-link").click(function() {
  window.location = $(this).find("a").attr("href");
});
...