Skip to main content

Copy Text Using JavaScript Using document.execCommand()

Copy Text Using JavaScript Using document.execCommand()

Here is a Sample Code - Click Here To Copy

    
    function copy(selector,command){
      if(selector) document.querySelector(selector).select();
      if(!command)command = 'copy';
      document.execCommand(command);
    }
    
  

Selector is for the querySelector of your Element like 

You have to copy a Text Under Element with id report so you have to pass #report here.

Run This Function ...

    
 copy('#report')
    
  

Here Second Option is Optional .

Possible Values :- 1. Copy, Cut

Default Value :- Copy.


See Demo Codes Here :- https://replit.com/@SH20RAJ/Tutorials#copy-text-js/index.html

See Demo :- https://tutorials.sh20raj.repl.co/copy-text-js/

Chats During Video Making :- https://simp.ly/p/vPDdmj


Tips :-

- See Example Code Here For Input and Copy Button.

    
    function copy(selector,command){
      if(selector) document.querySelector(selector).select();
      if(!command)command = 'copy';
      document.execCommand(command);
    }
    
  

- Use User Select to Select the inner Text of Div. and Copy() for Copying After Select.


     
      <pre>
    <code id="code1" onclick="copy()" style="user-select: all;">
    function copy(selector,command){
      if(selector) document.querySelector(selector).select();
      if(!command)command = 'copy';
      document.execCommand(command);
    }
    </code>
  </pre>

    
  

Comments

Popular posts from this blog

FamilyAlbum - Free Unlimited Storage - Share Family Photos and Videos - Auto-Organized Album

Website :- https://family-album.com Play Store :- https://play.google.com/store/apps/details?id=us.mitene Description from Play Store The best way to safely share and organize your family’s photos and videos. Unlimited storage, no ads, and it’s free! 3 Reasons to Start Your Album: 1) You’ll love it YOUR MEMORIES ON DISPLAY. Show off your photos and videos in a way that’s both beautiful and intuitive. Everything is automatically sorted by month, complete with your child’s age. Just swipe the screen to go back in time! UNLIMITED STORAGE. Back up all your memories for free. STREAMLINED SHARING. No more sharing the same photo with five different group chats. All your photos, all your videos, all your favorite people, all in one place. YOUR PRIVACY IS OUR PRIORITY. Your album is completely private. All content you upload to the app belongs to you, and it can only be viewed by you and the family and friends you invite. That also ...

Train Loader For Website or Blogger | SopLoader - Trn

 Train Loader For Website or Blogger | SopLoader - Trn Video Documentation :- Just Copy Paste the CDN Just after <body> Tag.  To Get This Loader Preview :- On  Repl.it :-  https://SopLoader.sh20raj.repl.co Repl.it Source :-  https://replit.com/@SH20RAJ/SopLoader#index.html On Codepen :-   See the Pen Css stylish Loader with CDN #1 by SH20RAJ ( @SH20RAJ ) on CodePen .

Random Posts