Created
October 9, 2013 16:34
-
-
Save dsebao/6904120 to your computer and use it in GitHub Desktop.
Clickeable div
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(function(){ | |
| $('.thediv').click(function(){ | |
| window.location = $(this).find('a').attr('href'); | |
| }); | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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