*

Satbeer Singh

  • ****
  • 108 posts
How to Disable numbers in Title
« on: October 17, 2023, 06:11:15 PM »
Sir can you help solving this problem in zara theme
That how can we stop user from posting numbers in title of the listing in item-post.php as to which only alphabets can only be entered onto it.

Thanks in Advance !!

Marked as best answer by frosticek on October 20, 2023, 12:51:36 PM
*

MB Themes

Re: How to Disable numbers in Title
« Reply #1 on: October 18, 2023, 10:47:47 AM »
That would require jquery keypress check on title input.

Sample code to utilize:
Code: [Select]
<script>
            $( document ).ready(function() {
                $( ".txtOnly" ).keypress(function(e) {
                    var key = e.keyCode;
                    if (key >= 48 && key <= 57) {
                        e.preventDefault();
                    }
                });
            });
        </script>
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

Satbeer Singh

  • ****
  • 108 posts
Re: How to Disable numbers in Title
« Reply #2 on: October 19, 2023, 11:49:17 AM »
Thanks for your Help its working.  :)

*

MB Themes

Re: How to Disable numbers in Title
« Reply #3 on: October 20, 2023, 12:51:55 PM »
Please share final code if you do not mind.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots