onkeyup Event
THE WORLD'S LARGEST WEB DEVELOPER SITE

onkeyup Event

❮ DOM Events ❮ KeyboardEvent

Example

Execute a JavaScript when a user releases a key:

<input type="text" onkeyup="myFunction()">
Try it Yourself »

More "Try it Yourself" examples below.


Definition and Usage

The onkeyup event occurs when the user releases a key (on the keyboard).

Tip: The order of events related to the onkeyup event:

  1. onkeydown
  2. onkeypress
  3. onkeyup

Browser Support

Event
onkeyup Yes Yes Yes Yes Yes


Syntax

In HTML:

<element onkeyup="myScript">
Try it Yourself »

In JavaScript:

object.onkeyup = function(){myScript};
Try it Yourself »

In JavaScript, using the addEventListener() method:

object.addEventListener("keyup", myScript);
Try it Yourself »

Note: The addEventListener() method is not supported in Internet Explorer 8 and earlier versions.


Technical Details

Bubbles: Yes
Cancelable: Yes
Event type: KeyboardEvent
Supported HTML tags: All HTML elements, EXCEPT: <base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, and <title>
DOM Version: Level 2 Events

More Examples

Example

Using "onkeydown" together with the "onkeyup" event:

<input type="text" onkeydown="keydownFunction()" onkeyup="keyupFunction()">
Try it Yourself »

Example

Output the actual key that was released inside a text field:

Enter your name: <input type="text" id="fname" onkeyup="myFunction()">

<script>
function myFunction() {
    var x = document.getElementById("fname").value;
    document.getElementById("demo").innerHTML = x;
}
</script>
Try it Yourself »

❮ DOM Events ❮ KeyboardEvent