Javascript examples for jQuery:Form Input
Prevent characters such as quotation marks from input
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.js"></script> <script type="text/javascript"> $(window).load(function(){//from w w w . j a va2s. c o m $('input').on('keypress', function (e) { if (/^[a-zA-Z0-9\.\b]+$/.test(String.fromCharCode(e.keyCode))) { return; } else { e.preventDefault(); } }); }); </script> </head> <body> <input> </body> </html>