vote up 2 vote down star
1

I'm trying to write a Javascript function to edit content from clipboard before pasting. Right now i got bound event 'paste' to function via JQuery.

$(this.elementDoc).bind('paste', function(event){
   self.OnPaste(event);
});

But that's not important. Now i would like to get Data from clipboard, but i can't find out how. I would be glad for every hint.

flag

1 Answer

vote up 3 vote down check

This is a toughie. If I recall correctly, IE allows access to the clipboard, but by default Firefox does not due to security issues. I had to do this for a project I was working on, and was forced to use a small SWF file that did the copying.

http://www.jeffothy.com/weblog/clipboard-copy/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.