Created
October 9, 2017 10:14
-
-
Save matinrco/1c1772cc041d346d55297717fb025e4b to your computer and use it in GitHub Desktop.
use jQuery drag and drop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('div.uploadBox').on({ | |
'drop dragdrop':function(event){ | |
event.preventDefault(); | |
console.log('dropped'); | |
}, | |
'dragenter':function(event){ | |
event.preventDefault(); | |
console.log('drag enter') | |
}, | |
'dragleave':function(event){ | |
event.preventDefault(); | |
console.log('drag leave') | |
}, | |
'dragover':function(event){ | |
event.preventDefault(); | |
console.log('drag over'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment