We're a place where coders share, stay up-to-date and grow their careers.
First, be sure that you review browser compatibility that you are supporting. Also, one thing is getting data from the clipboard and putting it on it, that is very different to implement.
According to Can I Use 93.39% of browsers support this method.
And to paste something on the input field just do this document.execCommand("paste")
document.execCommand("paste")
First, be sure that you review browser compatibility that you are supporting.
Also, one thing is getting data from the clipboard and putting it on it, that is very different to implement.
According to Can I Use 93.39% of browsers support this method.
And to paste something on the input field just do this
document.execCommand("paste")