The onkeyup
attribute event is triggered
when the user pressed a key.
The order of events related to the onkeydown event:
None.
<element onkeyup="script or Javascrpt function name">
All HTML elements, EXCEPT:
<base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, <title>
onkeyup |
Yes | Yes | Yes | Yes | Yes |
<!DOCTYPE html>
<html>
<body>
<!-- ww w. j a v a2 s . c om-->
<input type="text" onkeyup="myFunction()">
<script>
function myFunction() {
console.log("pressed a key");
}
</script>
</body>
</html>
Listen to key up event for TextArea in JavaScript
<html>
<head>
<script type="text/javascript">
function handleEvent(oEvent) {<!-- www . j av a2 s .c om-->
var oTextbox = document.getElementById("txt1");
oTextbox.value += "\n>" + oEvent.type;
}
</script>
</head>
<body>
<P>Type some characters into the first textbox.</p>
<P>
<textarea id="txtInput" rows="15" cols="50"
onkeydown="handleEvent(event)" onkeyup="handleEvent(event)"
onkeypress="handleEvent(event)"></textarea>
</p>
<P>
<textarea id="txt1" rows="15" cols="50"></textarea>
</p>
</body>
</html>