C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Preventing “Enter” from submitting form
WhatsApp
Jithil John
Sep 10
2015
854
0
1
$(document).ready(
function
() {
$(window).keydown(
function
(event) {
if
(event.keyCode == 13 && event.target.nodeName !=
'TEXTAREA'
) {
event.preventDefault();
return
false
;
}
});
});
Preventing
Enter Key
Up Next
Preventing “Enter” from submitting form