Reputation: 350
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
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