Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.