このマークアップを使用して、div 全体をクリック可能にします。
<div class="myBox">
<div class="two">
<h2> Title</h2>
<p> This is the description</p>
<a class="some-button-class" href="http://www.google.com/">check here</a>
</div>
</div>
そしてこのJS
$(".myBox").click(function(){
window.location=$(this).find("a").attr("href");
return false;
});
そしてこのcss
.myBox { cursor:pointer;width:200px;height:200px;}
h2 {font-size:28px;}
p { color:#fff }
.two {
background: #999;
padding:50px;
}
しかし、それは機能していません。どうして?!
JSfiddle http://jsfiddle.net/ryRnU/16/