i tried many time but can't solve this problem
here's my code:
document.body.addEventListener('dragover',function(e){e.stopPropagation();e.preventDefault();$('body').css({opacity:'.4','z-index':'1001'});},false);
document.body.addEventListener('dragleave',function(e){e.stopPropagation();e.preventDefault();$('body').removeAttr('style');},false);
document.body.addEventListener('drop',function(e){e.stopPropagation();e.preventDefault();upload_files(e.dataTransfer.files);$('body').removeAttr('style');},false);});
when i drag the file into the webpage and the opacity turns .4,but when i drag the file hover the body child element (eg.div,table...) and the webpage keep blinking(opacity turns 1 then .4 loop) anyone know how to solve this issue?