Copy clipboard image to web page using jQuery

I want to implement an image of a copy of the clipboard on a web page.

Ex. The user presses a button on the screen, opens a web page, press CTRL + V and the image is uploaded to the web page. Is it possible to use jquery / javascript or PHP.

Is this possible in firefox?

Thanks in advance.

+5
source share
1 answer

I'm afraid no, no. You will need your users to save the screenshot to disk, and then (a) select it from the disk using the element <input type="file" />or (b) implement the HTML5 Drag n 'Drop API , allowing the user to drag the file into the browser window.

-1
source

All Articles