Hello friends is it possible with a mouse click to execute the command Ctrl + v "paste" into an input with jquery?
I already have a script that copies everything inside the input. now I need another one that when I click on another input paste the copied text.
I managed to make it work in IE but not in Chrome
function paste() { document.execCommand('paste') }