Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • onkeyup Event in Javascript

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 96
    Comment on it

    This function gets Executed when a user releases a key on the keyboard.
    A function is triggered when user releases the key and it transforms character to upper case.
    Example

    <p>This is the example of onkeyup event</p>
    Username: <input type="text" id="fn" onkeyup="myFunction()">
    
    <script>
    function myFunction() {
        var i = document.getElementById("fn");
        i.value = i.value.toUpperCase();
    }
    </script>
    
    </body>
    </html>
    

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: