Skip to content

Instantly share code, notes, and snippets.

@dsebao
Created October 9, 2013 16:34
Show Gist options
  • Save dsebao/6904120 to your computer and use it in GitHub Desktop.
Save dsebao/6904120 to your computer and use it in GitHub Desktop.
Clickeable div
$(function(){
$('.thediv').click(function(){
window.location = $(this).find('a').attr('href');
});
})
<div class="thediv">
<h2><a href="url">This is my title</a></h2>
<p>This is my paragraph</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment