$('#YourformID').on('keyup keypress', function (e) {
var keyCode = e.keyCode || e.which;
if (keyCode === 13) {
e.preventDefault();
$(this).find('#YourActionButtonID').click();
}
});

Programming is fun and interesting. As you all know, sometime we programmers stucks in the middle way of coding without getting a solution. Blogs like this will help us to find a path to solve our problems. The contents of this blog are the solutions that I found by myself and from other sources. Sharing such solutions is also interesting. Thank you!
Wednesday, July 19, 2017
Prevent default form action and do another one
Some time we need to perform an action rather than default form action. For this use the script given below.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment