Tagged Questions

5
votes
1answer
85 views

Getting the contents from client's clipboard like this website

Can someone explain how does this website accesses the contents of the clipboard and displays it? http://snag.gy I am working on a similar project and need to make use of this functionality where ...
3
votes
1answer
242 views

trouble with ZeroClipboard of add a tooltip

I'm trying to use Zeroclipboard http://code.google.com/p/zeroclipboard/ to copy stuff to the clipboard and add a tooltip when the mouse hover on the flash. but it doesn't seem to be working. my html ...
2
votes
2answers
669 views

copy text to clipboard with jquery or javascript

how to copy some text to the clipboard with jquery or javascript, from google. i know there is a pludgin named zeroclipboard http://code.google.com/p/zeroclipboard/ can do this with cross ...
2
votes
4answers
3k views

How to actually use ZeroClipboard in jQuery?

I just can't get this thing. How is ZeroClipboard supposed to work? Why does it need to move the flash-element over the copied text? I've read this thing: ...
2
votes
1answer
560 views

zeroclipboard hover

I'm trying to implement the flash component used on retailmenot.com and I'm facing some problems with it. After several days of searching and such I succeed on doing the zeroclipboard flash element ...
1
vote
2answers
2k views

Jquery/javascript copy to clipboard

I'm using http://www.steamdev.com/zclip/#usage to copy some text to the clipboard and that code is working just fine. It uses flash to create a crossbrowser solution and it is based on ZeroClipboard, ...
1
vote
1answer
2k views

Zeroclipboard multiple elements

I'm having trouble creating multiple Zeroclipboard instantiations in my code, with each instantiation launching a popup window after it is invoked. <a class="xxx" href="popup.url.php" ><span ...
1
vote
1answer
2k views

How to load an Ajax response into clipboard using jQuery and ZeroClipboard?

I need a way to copy dynamically (Ajax) loaded content into the clipboard in a Web browser. There are many libraries out there that will mimic the copy-to-clipboard functionality using Flash. ...
0
votes
1answer
53 views

Using ZeroClipboard to Copy URL to Clipboard

I'm trying to utilize ZeroClipboard (http://code.google.com/p/zeroclipboard/wiki/Instructions) to copy the current URL to the user's clipboard. I know I'm missing something here, but I am not getting ...
0
votes
1answer
13 views

How to play sound with ZeroClipboard?

Is there a way I can play a sound each time a click is made using ZeroClipboard? I have a custom sound made that I want to play on those events. PS. I can't use an <embed> here because I don't ...
0
votes
0answers
75 views

ZeroClipboard / zClip — how to bind to live events?

I'm trying to bind zclip with live: $('.code').live('click', function () { $(this).zclip({ path: '<%= asset_path "ZeroClipboard.swf" %>', copy: $(this).text() }); ...
0
votes
0answers
49 views

How to define width and height of the div dynamically in jquery zeroClipboard?

I have used jquery ZeroClipboard to open a link on click. There is a code like this which gives the height and width for the div clicking on which can go to the given site link. But the div is ...
0
votes
0answers
275 views

I don't know why Zclip jquery plugin won't copy '\n'(newline) of a textarea

Im trying to copy all text of a textarea but when i have '\n'(newline), it won't copy properly.
0
votes
0answers
248 views

jQuery zclip won't work on ie7? [closed]

plugin website say: 1.) Tested compatible in IE 6, IE 7, IE 8, FF 3.6, Chrome 8, Safari 5, Opera 11 but it won't work on ie7. someone could help me? my code: $('.btn').zclip({ ...
0
votes
0answers
284 views

zclip and jquery ajax issue in firefox

I know its been covered in various topics about being able to use zclip to copy and paste to the clipboard using ajax, but I'm wondering if my issue is something a bit more general with jquery, ...
0
votes
1answer
493 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;"> ...
0
votes
1answer
145 views

zeroclipboard - coping and formatting text

I am Struggling to create a selection set to pass through to a zeroclipboard client to copy the contenst of the various html elemnts in a basically formatted form. I can pass through text to the ...
0
votes
1answer
2k views

Trouble with ZeroClipboard

I'm trying to use Zeroclipboard to copy stuff to the clipboard, but it doesn't seem to be working. My code: HTML: <textarea name="texter" id="texter"></textarea> <input type="button" ...
0
votes
3answers
841 views

zeroClipboard complex css problem

i have list of images and on mouse over there is option box shows under it, which has embeded code input box to copy from. now i implemented zeroclipboard on it, for making copy function work on ...