I use CSS-Tricks script, which is pretty simple, except that my script includes a small complex area :)
script:
$(".myBox").click(function(){
window.location=$(this).find("a").attr("href");
return false;
});
This works fine except for my DIV. I have a space containing an icon that should trigger a tooltip, but not connected anywhere (already works fine).
My question is: Is it possible that the above script to make the entire DIV clickable EXCEPT when the child interval falls?
Thank!
source
share