how to copy selected text to the clipboard using javascript

jq beginner

i'm using a simple code to select all text inside textarea but i want the button to copy the text into the clipboard instead of using right click or Ctrl+c. here's the select code:

<form>
<textarea name='text_area' rows=1 cols=20 >large/<?php echo $row['Img_Name']; ?> 
</textarea> 
<input type='button' value='select path' onClick='javascript:this.form.text_area.focus(); this.form.text_area.select();'>
</form></div>

many websites add buttons to copy code or text just open this page and click share on the video and choose embed you'll get a copy button without the need to select the text or add the website to the white list http://techcrunch.com/2014/03/13/zuckerberg-called-obama-to-express-frustration-over-new-nsa-revelations/?source=gravity

Matthias Schmidt

mozilla, like most other browsers doesn't let js manipulate the clipboard, unless the user set your website on a whitelist.

http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard

in response to your edited question: the video uses flash to copy to clipboard. There are several librarys that do so using hidden Flash content, for example ZeroClipboard

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

How to copy text to clipboard/pasteboard with Swift

From Java

Copy to clipboard using Javascript in iOS

From Java

How to copy text to clipboard in Vaadin without addon

From Java

Copy a given text of paragraph tag to clipboard using JavaScript

From Dev

How can I copy text to the clipboard using AppleScript

From Dev

How to copy text to / from clipboard in Go?

From Dev

Not able to copy the clipboard data using javascript

From Dev

javascript copy rich text contents to clipboard

From Dev

How to copy text including special characters to clipboard using C and WinAPI?

From Dev

Using execCommand (Javascript) to copy hidden text to clipboard

From Dev

How Best to Copy Formatted Text Into Clipboard

From Dev

Javascript - Copy string to clipboard as text/html

From Dev

How to copy text from a div to clipboard

From Dev

tmux copy mouse selected text to clipboard automatically on mouse release

From Dev

Copy span text using Clipboard.js

From Dev

How to get content of a text file and copy it to clipboard?

From Dev

Yank/copy selected text to clipboard in IPython Vi mode

From Dev

How to copy text from command line to clipboard without using the mouse?

From Dev

How can I copy the text of a Button in the clipboard?

From Dev

How to copy text from pentadactyl to system clipboard?

From Dev

How can I copy text to the clipboard using AppleScript

From Dev

How to copy text to Clipboard from TextField in Android

From Dev

How to copy text to the clipboard when using Wayland?

From Dev

Copy vim selected text to system clipboard

From Dev

How to copy text including special characters to clipboard using C and WinAPI?

From Dev

How to copy data in a text file to the clipboard?

From Dev

How to copy a selected word to the clipboard using VIM?

From Dev

How to paste text from clipboard into selected textbox using a button

From Dev

Outlook VBA - how to copy the currently selected text into clipboard?

Related Related

  1. 1

    How to copy text to clipboard/pasteboard with Swift

  2. 2

    Copy to clipboard using Javascript in iOS

  3. 3

    How to copy text to clipboard in Vaadin without addon

  4. 4

    Copy a given text of paragraph tag to clipboard using JavaScript

  5. 5

    How can I copy text to the clipboard using AppleScript

  6. 6

    How to copy text to / from clipboard in Go?

  7. 7

    Not able to copy the clipboard data using javascript

  8. 8

    javascript copy rich text contents to clipboard

  9. 9

    How to copy text including special characters to clipboard using C and WinAPI?

  10. 10

    Using execCommand (Javascript) to copy hidden text to clipboard

  11. 11

    How Best to Copy Formatted Text Into Clipboard

  12. 12

    Javascript - Copy string to clipboard as text/html

  13. 13

    How to copy text from a div to clipboard

  14. 14

    tmux copy mouse selected text to clipboard automatically on mouse release

  15. 15

    Copy span text using Clipboard.js

  16. 16

    How to get content of a text file and copy it to clipboard?

  17. 17

    Yank/copy selected text to clipboard in IPython Vi mode

  18. 18

    How to copy text from command line to clipboard without using the mouse?

  19. 19

    How can I copy the text of a Button in the clipboard?

  20. 20

    How to copy text from pentadactyl to system clipboard?

  21. 21

    How can I copy text to the clipboard using AppleScript

  22. 22

    How to copy text to Clipboard from TextField in Android

  23. 23

    How to copy text to the clipboard when using Wayland?

  24. 24

    Copy vim selected text to system clipboard

  25. 25

    How to copy text including special characters to clipboard using C and WinAPI?

  26. 26

    How to copy data in a text file to the clipboard?

  27. 27

    How to copy a selected word to the clipboard using VIM?

  28. 28

    How to paste text from clipboard into selected textbox using a button

  29. 29

    Outlook VBA - how to copy the currently selected text into clipboard?

HotTag

Archive