Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script type="text/javascript" src="https://skylightanimation.github.io/assets/plugin/jquery/jquery-3.4.1.min.js"></script>
- <textarea id="text-copy" class="form-copy">https://LangITTutorial.blogspot.com</textarea>
- <button class="btn btn-copy btn-circle">
- COPY
- </button>
- <script type="text/javascript">
- $(document).ready(function(){
- $('.btn-copy').on("click", function(){
- var value = $('#text-copy').text();
- var $tempCopy = $("<input>");
- $("body").append($tempCopy);
- $tempCopy.val(value).select();
- document.execCommand("copy");
- $tempCopy.remove();
- })
- })
- </script>
Advertisement
Add Comment
Please, Sign In to add comment