dovidev
dovidev

Reputation: 350

Drag and drop into from browser to FineUploader

I've been using FineUploader to upload images onto my website but I'm finding that a lot of people are trying to drag images from other websites into the uploader. I know other websites (ie: pinterest) grab data from that. Has anybody had success grabbing that browser image using FineUploader?

Upvotes: 0

Views: 159

Answers (1)

Ray Nicholus
Ray Nicholus

Reputation: 19890

Your best bet is to enable the "paste to upload" feature. That is supported in Chrome/Opera. You can then copy the image and then paste it into Fine Uploader.

Setup:

var uploader = new qq.FineUploader({
   paste: {
      targetElement: document
   }
})

Upvotes: 2

Related Questions