Greetings,
I am dabbling with my little code here. Problem is mouseout event handler is getting executed thrice instead of twice.
var img=document.getElementById('newImg');
img.addEventListener('mouseover',function(e){
e.target.width+=200;
console.log(e.target.width);
img.addEventListener('mouseout',function(e){
e.target.width-=200;
console.log(e.target.width);
},false);
console.log(e.target.width);
},false);