I have this simple example here which is not firing in Chrome 11 for me http://jsfiddle.net/G9mJw/ which consists on a very simple code:
var dropzone = document.getElementById('dropzone'),
draggable = document.getElementById('draggable');
function onDragOver(event) {
var counter = document.getElementById('counter');
counter.innerText = parseInt(counter.innerText, 10) + 1;
}
dropzone.addEventListener('dragover', onDragOver, false);
It seems to work fine in safari tho...but in Chrome the dragover
event is not being called when the red square touch the dotted one.
I've tried to replicate some examples which have this currently working in chrome but it din't work for me either.
I've tried prevent the default behaviour to see it if worked but it didn't. any help would be very appreciated.
thanks