Categories
Friends
Links
Tag Archives: div clickable
How to make the entire div clickable
First, find a link inside div class “myDiv”, then redirects to the link when anywhere in div is clicked. jQuery $(".myDiv").click(function(){ window.location=$(this).find("a").attr("href"); return false; }); HTML Example <div class="myDiv"> <p>Loren Ipsun dolor dummy text.</p> <a href="http://www.fabriziomichels.com">My Site</a> </div>
How To Make The Whole Div Clickable with CSS Only