I have an HTML page like this:
<html>
<body>
<input type="text" onPaste="return myfunction()"></input>
</body>
</html>
I have a javascript like this:
function myfunction(){
var text = ;
if(text == "ABC"){
alert("Accepted");
return true;
}
else{
alert("Rejected");
return false;
}
}
I want to assign the pasted String
to the var text
This question may seem like a duplicate. But, I want to acheive this without jquery
.
This is a possible solution: http://jsfiddle.net/Lqdfa9co/
I added this:
and the function was changed to this:
It is necessary to use a
setTimeout
ononPaste
event in order to get the value inside the function. This is caused by the fact that the event is triggered before the value is assignedEdit: In order to answer to the changed question, I updated the "Rejected phase" emptying the input value http://jsfiddle.net/Lqdfa9co/1/