Monthly Archives: January 2007

Mouse Events onmouseout issue event bubbling

Quick JavaScript example to handle the onmouseout event to prevent event bubbling in IE. if(window.addEventListener) { // Mozilla, Netscape, Firefox object.addEventListener(‘mouseover’,function() {this.className = “objectVisible”;false) object.addEventListener(‘mouseout’,function() {this.className = “objectNotVisible”;return true;}, false)} else { // IE object.onmouseenter = function() {this.className = “objectVisible”;return … Continue reading

Posted in JavaScript, Uncategorized | Tagged | Comments Off