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
jQuery
// Enter key press to search by search icon.
<script type="text/javascript">
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>