Posts by Fabiano Chaves • 1 point
1 post
-
0
votes1
answer65
viewsA: How do I set up Dropzone JS to receive an image just by typing CTRL+ V, so that it accepts text and images together?
document.onpaste = function(event){ var items = (event.clipboardData || event.originalEvent.clipboardData).items; for (index in items) { var item = items[index]; if (item.kind === 'file') { // adds…