Created
June 1, 2014 06:23
-
-
Save tanshio/14625c25c71b6ee847e8 to your computer and use it in GitHub Desktop.
clipboard to form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.body.onpaste=function(e){ | |
var pasteText; | |
pasteText = e.clipboardData.getData("text/plain"); | |
pasteText = pasteText.replace("console","");//text replace | |
document.getElementById("").value = pasteText; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment