Tagged Questions
1
vote
1answer
28 views
Trigger.io copy link to iPhone clipboard
is there is any way using javascript or any Trigger.io native method to copy value to the iPhone clipboard ?
I tried a lot of solution for cross browser copy to clipboard but not worked with the ...
3
votes
2answers
115 views
Way to copy to clipboard in the PURE javascript?
There is a way how to trick "copy to clipboard" functionality on web pages with flash...
But is there a way to make it in a PURE javascript way (but still cross-modern-browser)?
Beacause even adobe ...
0
votes
0answers
13 views
Is there any way to call nsiClipBoardHelper.idl in my javascript.?
i want to get clipboard data and it have to display in my firefox page.
i used window.clipboardData.getData("text") for the internet explorer. it works perfect in explorer.
and firefox throws error ...
2
votes
1answer
82 views
How to accept MathML from Windows Math Input Panel?
The question How do i accept MathML? already explains how to handle output from Windows 7 and Windows 8 Math Input Panel using native Windows code.
Is it possible to do the same with any web browser ...
0
votes
0answers
100 views
zeroclipboard is not working. ZeroClipboard.setMoviePath is not a function
Good day, friends. I can't make zeroclipboard working with my page. In HTML page I have:
<script type="text/javascript" src="ZeroClipboard.js"></script> //Script was loaded successfully.
...
0
votes
0answers
35 views
How to retrieve Source Details of copied content from clipboard
I am trying to retrieve meta data from the clipboard to keep track of the copy pasted contents using Javascript. I have tried using clipboardData object for getting the data but other than the copied ...
0
votes
2answers
313 views
asp.net copy table to clipboard
How can I copy the contents of an asp:Table to the clipboard so that it can be pasted in something like Excel?
I assume some sort of JavaScript is required?
For winforms it is easy enough using the ...
0
votes
1answer
293 views
javascript read blob as data url
I'm making a paste image from clipboard function
then I need to convert blob data to base64 encoded data url
here's the code:
function handlepaste (event, e) {
var items = e.clipboardData.items;
...
0
votes
0answers
108 views
hide the text once it's copied to clipboard with javascript
I use ZeroClipboard to let visitor copy the text to the clipboard
Here is my code
<?php
$text = 'Hello world !';
echo $text;
?>
<button id="copy-button" ...
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) ...
0
votes
0answers
79 views
How to click on an element and use javascripts “copy” event to add to the clipboard
Javascript finally has the "copy" event and we no longer have to use flash! (well, we still should use flash as a fallback).
http://dev.w3.org/2006/webapi/clipops/#x3.1.1-copy-event
I'm trying to ...
0
votes
1answer
166 views
Copying to clipboard using javascript/flash
I am currently working on a PHP/HTML/Javascript project and I am trying to automatically copy text to the user clipboard when they press a button.
I've done some research and found that this can be ...
0
votes
0answers
48 views
Javascript Clipboard doesn't keep the page break charactor from Mac's Pages
I copy the text from Mac OS Pages to my html wysiwyg editor. I use
clipboardData.getData("text/html")
to get the html string. but the page break is not kept. It supposed to be a control ...
11
votes
2answers
1k views
Will there ever be an HTML5 Clipboard API?
I'm frustrated with how far behind other standard web APIs we are with clipboard access.
I'm working on a webapp that lets you draw and edit SVG graphics in the browser. The File API lets me load and ...
0
votes
1answer
186 views
Javascript parse the htmlstring from clipboardData.getData(“text/html”)
I copy/paste styled text from MS word to online text editor. When I use JavaScript clipboardData.getData("text/html") to get the htmlstring, I can see the text already been converted to the HTML/CSS ...
1
vote
0answers
100 views
How to avoid IE message “… allow this webpage to access the clipboard” programmatically?
Please have a look at this fiddle. I'd like to catch the IE paste event, do s.th. with the data to be pasted and paste it then. This should also be possible to be done by clicking a button. Everything ...
0
votes
0answers
86 views
How to access image on the clipboard and attach to the web page as a file?
I am working on an asp.net web application. My requirement is that there should be a button in my page such that when I copy/printscreen an image and then press this button then it should ...
1
vote
1answer
200 views
How to access clipboard image and save it at server location in asp.net web application?
I wish to have the following feature in my web application:
On the client side When I copy an image from anywhere (it gets loaded to the clipboard), now I wish to have a button on which when I click ...
3
votes
1answer
202 views
Copy and paste in codemirror.js embeded in javafx application
I'm creating simple editor in Java FX using codemirror.js library.
I embeded codemirror editor in javafx using javafx.scene.web.WebView component, with the folowing html/js code:
<body>
...
1
vote
0answers
148 views
Copy to clipboard BINARY data in browsers
State of the art in Copy to Clipboard feature (My investigations)
Flash alternative
I have found the following alternatives:
Zclip: we are using
zeroclipboard (ancestor, zclip uses its button ...
1
vote
0answers
93 views
ZeroClipboard - formatting clipboard data to be bold or have certain font size
I'm using a fairly standard ZeroClipboard setup. All vars are declared previously. text is the raw html.
zc = new ZeroClipboard.Client();
text = text.replace(/<\/p>/g, "\r"); // Preserve ...
4
votes
1answer
447 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
0answers
351 views
ZeroClipboard not Working
I was having trouble using ZeroClipboard. My aim is to replicate Copy to clipboard like bit.ly does.
Here is my code
<script>
var clip = new ZeroClipboard.Client();
clip.setText('');
...
0
votes
1answer
843 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, ...
1
vote
2answers
147 views
How send image from java applet to javascript?
I have code in JAVA
import java.applet.Applet; import java.awt.Container; import java.awt.FlowLayout; import java.awt.Graphics; import java.awt.Image; import java.awt.MediaTracker; import ...
-1
votes
1answer
114 views
Provide alternative solution for mouse events issues
I am working on a clipboard functionality, but I am facing some mouse-events related issues.
In the code snippet below, my clipboard functionality works only when I remove label tag and ...
0
votes
0answers
79 views
mouse events javascript issues
iam working on a clipboard functionalty...
BUT Iam facing mosue-events issues... In below code, when I remove label tag and style="display:none" class="hide" , my clipboard functionality working, ...
0
votes
0answers
92 views
clipboard demo working but not practically
iam looking for copying the text into a clipboard..I found below one..
http://beckelman.net/2009/01/22/copy-to-clipboard-with-zeroclipboard-flash-10-and-jquery/
BUT surprisingly, its demo working in ...
0
votes
0answers
41 views
javascript copy to clipboard [duplicate]
Possible Duplicate:
How to copy to the clipboard in JavaScript?
I'm unable to get this function to copy a text field to the clip board to work. It selects the text field but doesn't copy it ...
0
votes
1answer
698 views
multiple zeroclipboard buttons
Having a hard time getting zeroclipboard to work with multiple buttons. I got it working with one (the first one) but I think my code is overcomplicated.
HTML:
<ul id="keylist" ...
0
votes
1answer
499 views
on click <input> select all value and copy to clipboard (cross browser support)
I want to select all and copy to clipboard the value of input when the user clicks on the input itself with cross browser support.
Example:
onClick this:
<input value="Generated Value: ...
0
votes
1answer
301 views
Copy&Paste doesn't work on Mobile Safari and CodeMirror
I have wrote the following code:
function copy() {
if(window.clipboardData) {
window.clipboardData.clearData();
window.clipboardData.setData("Text", ...
2
votes
1answer
445 views
How to copy data to the clipboard with Greasemonkey?
I found this question but trying to use the code given there:
unsafeWindow.netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
const clipboardHelper = ...
0
votes
1answer
50 views
load caption and link into clipboard
Is there a cross platform way to copy a link and caption to the clipboard, ie so google.com appears as 'Google' when pasted, but is a clickable link.
When copying Spotify URLs this works.
...
1
vote
3answers
157 views
Javascript copy text without tags
I have a script that when clicked will copy the contents of a div to the clipboard
<script type="text/javascript">
var program=document.getElementById('code');
ShowLMCButton(program.innerHTML, ...
0
votes
1answer
723 views
Copy text to clipboard from jsf / primefaces
I am using http://www.steamdev.com/zclip/ to implement copy to clipboard function.
it should copy some text, but for now i want it to be anything really... but its not working at all.
I included in ...
1
vote
0answers
340 views
iOS Copy to Clipboard from Browser
So a while back I was looking into a method of programatically copying something to the clipboard from a mobile website. It seemed impossible without using Flash in some way, which is of course not an ...
0
votes
0answers
251 views
A function to Copy or Empty clipboard with javascript, Zero Clipboard or java applet
I've been trying to make a function that will copy a predefined string of text to clipboard or just empty it.
something like:
function clip(){
clipboard = 'hello';
}
...
<button ...
1
vote
2answers
156 views
How can I detect if the clipboard is reachable in firefox?
For my JavaScript project I need to detect if the clipboard is reachable. Because in Firefox you need to configure an access for every site which needs it, otherwise some functions (like the ...
0
votes
2answers
287 views
c# Copy content of a textbox to Clipboard in browser SharePoint
I have a button "copy" which should copy a before generated text to clipboard.
I have the following code in my SharePoint-WebPart-Application:
public void CopyToClipboard_Click(object sender, ...
1
vote
1answer
376 views
Manipulating the clipboard with JavaScript breaks formatting
I am writing a script to append attribution linking to a user's clipboard -- similar to the functionality that you see from Tynt.
Functionally, the script below is working fine, except that it is ...
0
votes
1answer
254 views
Why is a value not getting copied to the clipboard in javascript?
I'm using Google App Engine Go SDK and I want to put some basic javascript code into my HTML templates that will use parameters passed from the application. The template looks like this:
<script ...
1
vote
1answer
1k views
Convert image from clipboard to base64 encoded data with JavaScript
I want to be able to take a screenshot and then just simply paste it to the textarea field which would then turn the image into base64 encoded string. Then I could easily put it inside img elements ...
0
votes
0answers
26 views
Can I access the clipboard vis javascript? [duplicate]
Possible Duplicate:
How to copy to the clipboard in JavaScript?
Is it possible to access the clipboard from Javascript? I want a very simple button when clicked the text Hello, world! is in ...
0
votes
0answers
197 views
Right-click copy from a SELECT MULTIPLE box
I'm creating a .jsp file that has this piece of html:
<select multiple="multiple" id="selectableOptions">
<option value="1">A</option>
<option ...
0
votes
0answers
763 views
how to create a copy button
please I am trying to create a simple button that can copy a long sentence on click to the clipboard so that it can be pasted anywhere, instead of the user highlighting the words and using the ctrl+c ...
0
votes
2answers
135 views
jQuery - change selected text
I found some code to copy selected text (for example: this) but there is no way to change that text to be available in clipboard.
How to change that text in clipboard?
0
votes
0answers
339 views
pasting excel data from clipboard into gridview
I am trying to figure out how to paste excel data from a clipboard to a gridview. I need to also track where the user clicks in the gridview as there may already be data in the gridview and the user ...
0
votes
1answer
237 views
Testing Chrome's execCommand on localhost
At the top of my HTML page, I have declared the path to my Google Chrome extension:
<link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/thekey">
Further down, I ...
5
votes
1answer
1k views
Copy javascript made images to clipboard
Is there today with HTML5 a way to copy to clipboard, without browser plugins (and so without Flash nor java) nor short-term hacks, an image built in a canvas ?
The copy to clipboard would be ...


