I use this code for scrolling my div
mydiv.addEventListener('mousewheel', function(e)
{
var col = 255;
if(e.wheelDelta/120 > 0)
{
if(col < 245)
{
col+=10;
}
this.scrollTop = this.scrollTop-25;
}
else
{
if(col > 10)
{
col-=10;
}
this.scrollTop = this.scrollTop+25;
}
});
It run without problems in Opera, in Firefox it make nothing, and at the first, no errors, so that I don't know where the problem is.