Skip to content
Advertisement

(Javascript) execCommand(‘copy’) copies text but adds extra white space to value

I have been scouring the internet all night to figure out how to use the execCommand(‘copy’) feature. Finally, found a solution on https://developers.google.com/web/updates/2015/04/cut-and-copy-commands?hl=en that works incredibly well. However, my new dilemma is that when I press the button that copies the value from the input field it adds extra white space to it. So with a normal copy/paste action (Ctl+E and Ctl+V) the input value appears like this:

TESTTESTTESTTEST

But when I press the button to copy the input value to the clipboard it looks like this:

TEST

TEST

TEST

TEST

How do I remove the extra white space that the execCommand(‘copy’) adds to the value of the input field. I have tried .replace(” “, “”); but that does not work. I am unsure how to continue. Here is the code:

JavaScript
JavaScript

Advertisement

Answer

The problem is with the selection. Window.getSelection normally works with element nodes and text nodes. In your case, you are selecting the whole input node, which gives you the result you have. With normal nodes, you could select the text node only, but inputs don’t have text nodes.

But inputs have setSelectionRange method, which allows to select the value only. Using selectionEnd property, you can select the whole value, but note the whole node. Like this:

JavaScript
JavaScript
Advertisement