java


SUBMITTED BY: killorsavedemall

DATE: June 8, 2017, 6:21 p.m.

FORMAT: Text only

SIZE: 456 Bytes

HITS: 328

  1. Thanx alot...work for me in IE10 to and IE11
  2. function pasteit()
  3. {
  4. var editor = document.getElementById("ta1");
  5. editor.focus();
  6. document.execCommand('Paste');
  7. }
  8. function copyToClipboard()
  9. {
  10. var input = document.getElementById("ta1");
  11. input.focus();
  12. document.execCommand('Copy');
  13. if ( document.selection ) {
  14. document.selection.empty();
  15. } else if ( window.getSelection ) {
  16. window.getSelection().removeAllRanges();
  17. }
  18. }
  19. On 25th June 2016

comments powered by Disqus