0

I want to ask if there is a way to copy text automatically to clipboard when user selects option on drop-down list.

sider
  • 647
  • 2
  • 9
  • 22
  • Check this out buddy http://stackoverflow.com/a/11347714/2261259 – Shadow Sep 02 '13 at 12:58
  • i think this post is a good answer. http://stackoverflow.com/questions/400212/how-to-copy-to-the-clipboard-in-javascript – Nipkom Sep 02 '13 at 12:59

1 Answers1

0

can you please used this for copy value

   window.clipboardData.setData('Text',str);

Demo

Code Lღver
  • 15,171
  • 16
  • 51
  • 71
Shakti Patel
  • 3,482
  • 4
  • 19
  • 27