Tagged Questions
0
votes
0answers
31 views
Copy url title to clipboard [duplicate]
Sometime ago, I made a list of links that have long titles. The original script let me push those link titles into a div when clicked on. Since then, the page has changed and I've lost that script. ...
0
votes
1answer
55 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?
...
0
votes
0answers
198 views
Copy / Paste Firefox (Works IE & Webkit)
Hellow
I went looking for some answers in case of copy / pasting data from anywhere into my contenteditable divs on my site, saw a lot of possible answers here. But still nothing the saved my ...
0
votes
1answer
299 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
131 views
jqgrid in window dialog modal explorer doesnt allow copy text to clipboard from grid
I'm opening a window In internet explorer using showModalDialog and I can't copy text to the clipboard from the gridview, and I dont have the "select" cursor when my mouse is over the grid, very ...
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
140 views
Copy text to clipboard by clicking on SVG object
Is it possible to copy some text to clipboard by clicking on an element of SVG object using jQuery? I used Zero Clipboard for copying to clipboard by pressing simple button, but similar approach did ...
0
votes
0answers
87 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
0answers
95 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 ...
0
votes
1answer
848 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
votes
1answer
115 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
1answer
702 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
504 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
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
1answer
377 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 ...
1
vote
1answer
100 views
jQuery: Is there a way to turn 'click' events into double-clicks?
How can I use jQuery to detect click events as double-clicks? Basically, I want the text in the .select class to be easier to select so the user can quickly copy the contents to the clipboard.
...
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()
...
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?
1
vote
1answer
1k views
difficulty with zeroClipboard
I am using zeroClipboard but I don't manage to have it working.
Here is my HTML markup:
<div id= 'd_clip_button'>
<img class = 'displayed' src="{{ ...
4
votes
1answer
663 views
Holding down on text in iOS does not bring up the 'copy' button on jQueryMobile Dialog when using ajax
I am talking about one of these Dialog boxes that pop up:
http://jquerymobile.com/test/docs/pages/page-dialogs.html
(short url for mobile http://bit.ly/KhCGVD)
Click 'Open Dialog' -- on that dialog ...
1
vote
1answer
626 views
Is there a non-Flash way to set/get the clipboard data in WebKit
I want to set or get data or text to the clipboard, but without flash. Is it possible?
2
votes
3answers
2k views
Paste image from clipboard to web form
I see that this has been discussed a few times before, but that was 2010 and before. Now i was writing a new email in my gmail client and noted that i could just paste an image into the mail body / ...
7
votes
4answers
470 views
Cross-browser method to prevent all methods of text copying from a textarea?
I am working on an online typing software. In the typing software, all is going well but I have the problem of dishonest users who might possibly type the text into the textarea, copy it, then reload ...
0
votes
1answer
447 views
click a link to copy visible rows into user's clipboard buffer?
How would you copy multiple rows of data like this <tr><td>cell 1</td><td>cell 2</td></tr> <tr><td>cell 3</td></td>cell ...
3
votes
3answers
2k views
How to obtain data from clipboard in Firefox
I would like to trigger onpaste event on element to retrieve data in clipboard (I want to check if image exists in clipboard and upload it into the server). It works perfect on Chrome:
...
1
vote
1answer
3k views
Cross-Browser JS/jQuery Copy current URL to Clipboard
I've been exploring ways to have a button to copy the current URL to the user's clipboard that is cross-browser compatible, but doesn't require Flash. I thought there would be a jQuery or vanilla ...
0
votes
0answers
837 views
Jquery Clipboard & onCopy event
Today i want to get clipboard data when an onCopy event occurs and edit contents of that and then set the data on clipboard.i try afterCopy event for zclip , but i cant get data from clipboard.any ...
1
vote
3answers
944 views
How to replace newline with comma in input using jQuery?
I have an input
<input>
When someone pastes multi-line text into the input, I need the newlines (\r, \n, and \r\n) and tabs \t replaced with a comma ,. Most of the time, the input will be ...
5
votes
1answer
2k views
Copying an image to clipboard using javascript/jquery
I need to copy an image to clipboard using javascript/jquery and I am using the following js to achieve that.
function copyImageToClipBoard() {
var div = ...
3
votes
2answers
17k views
Copy to clipboard with no Flash - Firefox, Chrome, Safari, Opera [duplicate]
Possible Duplicate:
Copy to clipboard without Flash
I want to copy some text from an element by a given id to clipboard. I want to be flashless solution, no Flash at all. It can be in ...
0
votes
2answers
375 views
jQuery clipboard content + addition
I want to change (on copy event) content of clipboard to current content + some self text. Is there any way, how can I do that with jQuery?
0
votes
1answer
569 views
Copy a part of page into clipboard using jQuery
I have a web application written in PHP with many reports in HTML format. Sometimes, I have different reports in one page and each of them have a print button.
One solution I have is to generate that ...
1
vote
5answers
3k views
Copying text to clipboard, firefox only, no plugins
I want to click a button a copy the text inside <div id="content"> into the clipboard. Is there a way do this with javascript or jquery, but without using a plugin. I don't need it to be ...
5
votes
3answers
3k views
Can't get ZClip to work
I know it works even on this site but only when I trigger it via the h1 element, and I need to trigger it via an image (representing copy) but when I try it simply won't work. Here's my Javascript:
...
1
vote
1answer
176 views
Flash Action Script
I wanna do a aplication in action script.
The aplication will appended with jquery to the page and i wanna if it would be appended do immediately a Copy to system clipboard some text. I have a code
...
1
vote
0answers
233 views
Paste Clipboard Images Into Gmail Messages [duplicate]
Possible Duplicate:
How does the paste image from clipboard functionality work in Gmail and Google Chrome 12+?
How does it work in Chrome?
...
36
votes
4answers
24k views
Copy to clipboard without Flash
I found many solutions for copying to the clipboard, but they all either with flash, or for websites side.
I'm looking for method copy to clipboard automatically, without flash and for user side, it's ...
8
votes
1answer
10k views
Copy selected text to the clipboard WITHOUT using flash - must be cross-browser
I want to have a button which selects the text in a textarea and copies it to the clipboard. I can't seem to find any solutions which work in all browsers and don't use flash.
Surely this is doable? ...
0
votes
1answer
1k views
Zero Clipboard Doesn't work when it's called dynamically
For coping to the clipboard I'm using Zero Clipboard, recommended by this answer.
The code works perfectly fine when used in this form.
<div id="d_clip_button" style="background: #FFFFCC;">
...
3
votes
2answers
3k views
Read the client clipboard with jQuery?
Is it possible to get/read the clipboard of a client with jQuery?
(I need get the information of a spread sheet and paste this information in a jqGrid web grid...)
4
votes
3answers
3k views
0
votes
1answer
162 views
Is there a simple way to select and copy 1 or 2 columns of an HTML table?
I've heard that there's a button you can hold to drag a selection of a table column in Firefox, but I'm looking for a cross-browser answer. I'm wondering if maybe I can put radio buttons above the ...
2
votes
1answer
255 views
Reading the contents of Clipboard in FF
I am able to do that in IE, but FF doesn't allow to do something like:
$("#txtBox").bind('paste', function (e) {
alert('pasting text!!!!');
...
4
votes
3answers
4k views
How to trigger CTRL+C Keyevent width Jquery?
I want to simulate a ctrl+c to copy the text into it. I first tried this:
$('#codetext').click( function() {
$("#codetext").trigger({
type: 'keydown',
which: 99
});
}
HTML:
...
0
votes
1answer
410 views
Clip content from remote website using javascript and Iframe?
Is there any helper for Iframe in Rails ??
*EDIT:*I have a link which redirects to a remote website , i need to get the COntent from that website and store in my application is this possible , I dont ...
4
votes
4answers
2k views
SWF does not load
ZeroClipboard.setMoviePath( "/zeroclipboard/ZeroClipboard.swf" );
var clip = new ZeroClipboard.Client();
clip.setText( $('textarea#download_me').text() );
clip.glue( 'clip' );
I'm using the popular ...
3
votes
3answers
16k views
Copy and paste clipboard in JavaScript. or jQuery
How do I copy content thats present in a div tag and paste it to applications like Paint, Powerpoint etc.
0
votes
1answer
1k views
copy an element as HTML to clipboard
I've managed to write some jQuery to find an element and copy it's html to the clipboard (ie only).
The problem is that when I paste this into a rich text box area in sharepoint it pastes the HTML as ...
5
votes
1answer
3k views
Selecting whole table/text for copying to clipboard
I have a htlm table with lots of data the user might want to copy to paste into Excel or whatever...
Since it's big I want to help user selecting it, he can then copy & paste himself.
I found ...


