DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Replace Div
Found at http://www.vivabit.co.uk/
function clickArea(tagName, className) {
var els = document.getElementsByTagName(tagName);
for (var i = 0; i < els.length; i++) if (els[i].className.indexOf(className)>=0) {
els[i].onmouseover=function() {this.className+=" soopahover"}
els[i].onmouseout=function() {this.className=this.className.replace(new RegExp(" soopahover\\b"), "")}
els[i].onclick = function () {location.href = this.getElementsByTagName("a")[0].href}
}
}
window.onload = function() {
clickArea("div", "soopalink");
}




