Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- ( function( $ ) {
- $( document ).ready( function() {
- var searchInput = $( '.et_pb_s' );
- if ( searchInput.length ) {
- $( '.et_pb_s' ).keypress( function( event ) {
- var character = String.fromCharCode( event.keyCode );
- return isValid( character );
- } );
- function isValid( str ) {
- return !/[~`!@#$%\^&*()+=\-\[\]\\';,/{}|\\":<>\?]/g.test( str );
- }
- }
- } );
- } )( jQuery );
- </script>
Advertisement
Add Comment
Please, Sign In to add comment