skylight_animation

Copy Text to Clipboard | Bootstrap Inline

Feb 5th, 2021
9,026
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.06 KB | None | 0 0
  1. <link rel="stylesheet" type="text/css" href="https://skylightanimation.github.io/assets/plugin/font-awesome/4.7.0/css/font-awesome.css">
  2. <link rel="stylesheet" type="text/css" href="https://skylightanimation.github.io/assets/plugin/bootstrap/3.3.7/bootstrap.min.css">
  3. <script type="text/javascript" src="https://skylightanimation.github.io/assets/plugin/jquery/jquery-3.4.1.min.js"></script>
  4. <script type="text/javascript" src="https://skylightanimation.github.io/assets/plugin/bootstrap/3.3.7/bootstrap.min.js"></script>
  5.  
  6. <div class="container">
  7.     <br>
  8.     <div class="input-group">
  9.         <input type="text" class="form-control" id="text-copy" value="https://LangITTutorial.blogspot.com">
  10.         <span class="input-group-btn">
  11.         <button class="btn btn-success copy-btn" type="button">
  12.             <span class="fa fa-copy"></span>
  13.         </button>
  14.         </span>
  15.     </div>
  16. </div>
  17.  
  18. <script type="text/javascript">
  19.     $(document).ready(function(){
  20.         $('.copy-btn').on("click", function(){
  21.             $("#text-copy").select();
  22.             document.execCommand("copy");
  23.             alert('text copied...');
  24.         })
  25.     })
  26. </script>
Advertisement
Add Comment
Please, Sign In to add comment