How do I paste what's on the clipboard?
I researched a lot, but what I found was just copying it, not the necklace!
The only thing I found about paste, did not work, which was document.execCommand("paste");
I want when the user clicks on the textbox or button, whatever was on the clipboard was pasted, so I did this:
$("#URL").click( function () {
document.execCommand("paste");
alert(document.execCommand("paste"));
});
To test, I put the alert
which, in addition to not pasting, displays: False
Iusedthis Question