jQuery > Events

Keyup event in jQuery

How to attach key up event to a html element in jQuery?


To attach key up event to a html element, keyup() method can be used.

 <script>
        $("#txtKeyPress").keyup(function () {
            $("#div3").append(" | key UP event fired");
        });
    </script>

In the above code when user leave the key in the “txtKeyPress” textbox then “ | key UP event fired” is be appended in the “div3” element.

More key related events are

 Views: 4370 | Post Order: 75



Write for us






Hosting Recommendations