Tagged Questions
0
votes
1answer
47 views
How to fire keyup event on clipboard using jquery?
I want to fire keyup event on a pdf doc which is open in chrome browser. Is it possible or not?One of my friend told me it can be happened with clipboard object.
I don't know he is right or wrong?
...
1
vote
2answers
148 views
how to get animated gif image from browser clipboard api?
I am testing the following code, and when I copy an animated gif and paste it to web page, I see image/png in the console - instead of image/gif as expected.
Why?
document.onpaste = function(event) ...
4
votes
1answer
435 views
In chrome, using the window.Clipboard object, is there a way to capture pasted text?
You can capture an image. I am trying to figure out how to capture text. I'm guessing there isn't, for security reasons, but I wanted to make sure.
Also is there a reference for this stuff? ...
0
votes
1answer
837 views
Copying text to clipboard in Chrome extension
I'm writing a Google Chrome extension and I want to copy some text in clipboard in a content script. I tried selecting it and then document.execCommand('copy') - it doesn't work. I don't want Flash, ...
0
votes
2answers
203 views
Paste an Image from Clipboard in Chrome
I am working on editor where I would like to provide a button by clicking which I want to paste an image which is already copied to the clip board. I couldn't do this as the browsers doesn't allow to ...
1
vote
1answer
235 views
Button to get image from clipboard using web app
I created chrome webapp to access the clipboard data.After added my webapp I have the permission to access the clipboard, but I don't know how to get the image from clipboard by clicking the paste ...
3
votes
2answers
802 views
Copy SVG Images from Browser to Clipboard
I am developing a web-application which takes user inputs, does engineering calculations and then shows a formatted report or graphic. The graphics are engineering diagrams and not always standard ...
0
votes
0answers
183 views
Jquey zClip, Chrome
I need to copy to the clipboard, and I have used this plug-in:
http://www.steamdev.com/zclip/
$('#copy_code').zclip({
path: '/scripts/js/ZeroClipboard.swf',
copy: $('textarea.form_code').val()
...
1
vote
2answers
392 views
Google Chrome stealing the Clipboard
I have a problem and I only came accross two or three posts around the web about it: When I'm using the clipboard in a C# application (Clipboard.SetText or Clipboard.Clear), Chrome is randomly already ...
1
vote
2answers
215 views
How to get content with format from clipboard
guys.
When i copy some words from internet using Chrome and paste to the Office Words, Words remind me that I can paste the words keeping source format.
That means clipboard can contain both the ...
0
votes
1answer
509 views
HTML perform paste into textarea
I have a textarea that I want to paste different text formats into. What would be ideal is to have several buttons each with a different kind of label.. One button to paste format A, another to paste ...
1
vote
2answers
1k views
Chrome Extension: Replace selected text in textarea with clipboard data
I'm having a hell of a time trying to insert text into an HTML textarea, or grab data from the clipboard with a Chrome extension (using a context menu).
I currently have these permissions in my ...
0
votes
1answer
388 views
Getting clipboard error from few applications when chrome is running - Datagridview on WinForm
I am getting an error when I am trying to use ctrl + C and ctrl +V on a datagridview control.
This is not reproducible on my other machine.
Further analyzing the case, I figured out that this issue ...
0
votes
1answer
272 views
Clipboard in Safari and Chrome
I found a few articles how clipboard works in IE and Firefox without flash, but I did not find any example regarding to Safari and Chrome. Could somebody share with me example or provide link?
Thank ...
8
votes
1answer
3k views
Paste image into rich text (like gmail)
I want to be able to copy an image from clipboard, specifically screenshots, and paste them right into a rich text editor, and/or have that file uploaded. We only use chrome so it only has to work for ...
0
votes
2answers
1k views
ActiveX / XPCOM equivalent for Google Chrome
Is there any way in Google Chrome to access the clipboard (i.e. get and set content of clipboard)? Internet Explorer allows for this by using ActiveX and I got it working in Firefox via XPCOM, I am ...
3
votes
1answer
2k views
How to copy text to clipboard from a Google Chrome extension?
I found that there's an experimental clipboard class. But it works only in dev channel, right? Any idea how I can copy the text?
0
votes
0answers
416 views
Javascript/css: Zeroclipboard hovering problem in google chrome
I am hoping to use multiple zeroclipboard divs like the demo here:
http://bowser.macminicolo.net/~jhuckaby/zeroclipboard/multiple.html
In google chrome, if I hover over the elements in the first 2 ...
1
vote
2answers
2k views
Copy text to clipboard from bookmarklet
I'm trying to write a little bookmarklet that can extract some text from the active page and load that into the clipboard.
The extraction is easy enough, but I'm really stuck doing the ...
35
votes
1answer
14k views
Secret copy to clipboard JavaScript function in Chrome and Firefox?
In the console windows of both Chrome and Firefox on Mac I can execute
copy("party in your clipboard!");
and the text gets copied to my clipboard. I have searched SO and Google and can't seem to ...
0
votes
1answer
430 views
Clipboard in Google Chrome Frame
I am deweloping page for IE with Google Chrome Frame. The are any way to copy text to clipboard(without Flash or SL) using this javascript engine or force IE to use orginal engine for some code block?
...
0
votes
1answer
2k views
build a chrome extension in order to upload images (from clipboard)
I wanted to write a simple chrome extension in order to substitute the following sequence of steps which i have to do very often for university:
make screenshot of something
edit screenshot ...
2
votes
2answers
3k views
Copy to clipboard on firefox and google chrome
since I have looked around and could not find any nice solution for copying text on firefox or chrome to clipboard. However, I have tried some codes provide by firefox in its developer site, but still ...
0
votes
3answers
530 views
Cannot paste text in CodeMirror in Google Chrome
There was no problem some months ago but suddenly "Paste" stop working in CodeMirror in Google Chrome. Both "Ctrl+V", "Shift+Insert" and right-click -> "Paste" do nothing.
It's not a bug in my code ...
2
votes
4answers
3k views
Get the selected text of a web page in google chrome extension
I am developing a Google Chrome extension. When a popup is clicked, I would like the input box present in the popup.html file to contain the selected text of the current webpage.
Example textbox:
...
66
votes
12answers
69k views
Copy / Put text on the clipboard with FireFox, Safari and Chrome
In Internet Explorer I can use the clipboardData object to access the clipboard. How can I do that in FireFox, Safari and/or Chrome?
