<!DOCTYPE html>
<html>
<head>
<title>html tutorial - html5 - html code - html form - In 30Sec by Microsoft Award MVP - | wikitechy HTML onkeyup attribute</title>
</head>
<body>
Enter the text:
<input type="text" id="tutorials" onkeyup="onKeyUp()">
<script>
function onKeyUp() {
alert ("event activated when the user releases a key.");
}
</script>
</body>
</html>