I have an event listener like this:
div.addEventListener('mouseover',function(){bubble_info.call(data);},false);
function bubble_info(e,info){
//get e.pageX etc
//do stuff with info
}
This problem is in bubble_info the variable e holds the info of data and info is undefined
How do i make sure i can get e and info correctly?