<!DOCTYPE html>
<html>
<body>
<p>This example demonstrates how to assign an "onkeyup" event to an input element.</p>
<p>Press a key inside the text field and release it to set the text to uppercase.</p>
Enter your name: <input type="text" id="fname" onkeyup="myFunction()">
<script>
function myFunction() {
var x = document.getElementById("fname");
x.value = x.value.toUpperCase();
}
</script>
</body>
</html>