This example uses the HTML DOM to assign an "onkeyup" event to an input element.

Press a key inside the text field and release it to set the text to uppercase.

Enter your name:



document.getElementById("fname").onkeyup = function() {myFunction()};

function myFunction() {
    var x = document.getElementById("fname");
    x.value = x.value.toUpercase();
}


Back