The below code allows a div to appear when the user rolls over a link. The issue is, is that the div doesn\'t disappear when the user rolls off the link. Is there anyway we can
Add a mouseout
function. Add the following code under your x[i].mouseover
function call:
x[i].onmouseout=function(){
var m = document.getElementsByClassName('HoverMe', 'a');
var n = document.getElementsByClassName('showMe', 'div');
for(var i = 0; i
Check out the fiddle here: http://jsfiddle.net/babcN/