skylight_animation

Copy Text to Clipboard | Textarea

Feb 5th, 2021
9,035
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.60 KB | None | 0 0
  1. <script type="text/javascript" src="https://skylightanimation.github.io/assets/plugin/jquery/jquery-3.4.1.min.js"></script>
  2.  
  3. <textarea id="text-copy" class="form-copy">https://LangITTutorial.blogspot.com</textarea>
  4. <button class="btn btn-copy btn-circle">
  5.     COPY
  6. </button>
  7.  
  8. <script type="text/javascript">
  9.     $(document).ready(function(){
  10.         $('.btn-copy').on("click", function(){
  11.             var value = $('#text-copy').text();
  12.            
  13.             var $tempCopy = $("<input>");
  14.                 $("body").append($tempCopy);
  15.                 $tempCopy.val(value).select();
  16.                 document.execCommand("copy");
  17.                 $tempCopy.remove();
  18.         })
  19.     })
  20. </script>
Advertisement
Add Comment
Please, Sign In to add comment