Enter key press event in jquery

Enter key press event in jquery

I am going to share the code sample for Enter key press event in jquery

Table of Content 

1. Code sample for HTML
2. Code sample for jQuery

In the 1st step, we write HTML code for text-box where i can type text to search and apply to key-press event on search image button in jquery.

HTML 

<input type="text" id="txtSearchIcon" /
<img src="~/Images/icon_search.png" id="imgSearchIcon" />

In the 2nd, write to jquery code


jQuery

// Enter key press to search by search icon.
<script type="text/javascript">
    $(function () {
        $('#txtSearchIcon').on('keypress', function (event) {
            if (event.keyCode == 13) {                                 
                $("#imgSearchIcon").click();
            }
        });
    });
</script>



ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Enter key press event in jquery Enter key press event in jquery Reviewed by Unknown on 5:24 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^