Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7097883
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T10:59:25+00:00 2026-05-28T10:59:25+00:00

I am working in javascript. I want to add validation on my text field

  • 0

I am working in javascript. I want to add validation on my text field that only characters are allowed.

along with characters, I allowed left arrow key which has keycode 37. But this is creating problem because keycode of % is also 37. And I dont want to allow % symbol.

Please suggest me how can I differenciate % and left arrow key , because both key code are 37 ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T10:59:26+00:00Added an answer on May 28, 2026 at 10:59 am

    If you press the ‘percent’ key the char code is 37, for the ‘left arrow’-key it’s not 37; e.g.:

    $('#test').keypress(function(oEvent) {
        if (oEvent.charCode == 37) {
            return false;
        }
    });
    

    Also see this jsfiddle.

    === UPDATE ===

    For additional internet explorer support:

    $('#test').keypress(function(oEvent) {
        var iCode = typeof oEvent.charCode == 'number' ? oEvent.charCode : oEvent.keyCode;
        if (iCode == 37) {
            return false;
        }
    });
    

    Also see this jsfiddle.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on a Javascript object that contains some YUI objects. The key
I want to add a + button to div 1 only if JavaScript enabled
I want to add a group of classes ontop of an image that only
Im working on a website (html,css,javascript, ajax, php,mysql), and I want to restrict the
I need JavaScript working almost perfectly in my application that should be able to
I'm working on a JavaScript image resizing feature which rely on the IE only
I am working on a javascript app that users load via a configurable script
I am working on a JavaScript utility that tells the user the number of
I have a javascript function that appends elements into my HTML page. I want
I want to add javascript to asp.net page dynamically. can anybody point me towards

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.