Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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>