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 6982641
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T18:18:55+00:00 2026-05-27T18:18:55+00:00

I have a form text field that has a KeyUp event. On KeyUp I’m

  • 0

I have a form text field that has a KeyUp event. On KeyUp I’m ignoring anthing but numbers, the period, backspace, delete and cursor keys. So, the only thing in the field can be a number or period.

I need to verify these things (number will become a % not over 100.00%):
-The text field string is a valid number (which should always be true unless someone puts two ‘.’s in).
-The text field string has a max of 2 decimal places
-If the text field string has a decimal point, it has something after (1 or 2 decimal places, not just a period at the end)
-The number is not larger than 100 (<= 100)

examples (what I need to verify):

 95 is true (valid, decimal places not required)

 95. is false (don't need a '.' with no decimal place after)

 95.0 is true

 95.00 is true

 95.000 is false (3 decimal places not valid) 100 is true

 101.01 is false (over 100)

 101 is false (over 100)

I’ve seen some things that do several pieces of that list, but I’m not smart enough to modify the regex to get exactly what I need. Thanks for any help!

  • 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-27T18:18:56+00:00Added an answer on May 27, 2026 at 6:18 pm

    Some people will suggest regexes, but I think a small function is better suited for such a validation:

    function validate(x) {
        var parts = x.split(".");
        if (typeof parts[1] == "string" && (parts[1].length == 0 || parts[1].length > 2))
            return false;
        var n = parseFloat(x);
        if (isNaN(n))
            return false;
        if (n < 0 || n > 100)
            return false;
    
        return true;
    }
    
    console.log(validate("95"));
    console.log(validate("95."));
    console.log(validate("95.0"));
    console.log(validate("95.00"));
    console.log(validate("95.000"));
    console.log(validate("101.01"));
    console.log(validate("101"));
    

    Live example

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

Sidebar

Related Questions

I have a form that has a choice list: <select name=cellSerpro id=idcellserpro class=field text
I have a form (form1) that has a text field (textBox1) I have a
My page has a form that has a text field in it. I'd like
I have a simple login form that has 2 text fields and a button.
I've got a form that has a single text field (for company): class Cas_Form_Company
I have a form page that has an inputText field that accepts a date.
I have a form that has a field that needs to be rendered as
I'd like to have a single form that has 2 or more field-set_tags and
I have a text field that I'm binding the paste event to using JQuery.
I have a form which has a search feature - a single text field

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.