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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T22:19:55+00:00 2026-06-17T22:19:55+00:00

How to allow only one . in javascript during Keypress ? I have a

  • 0

How to allow only one “.” in javascript during Keypress?

I have a code here:

function allowOneDot(txt) {

        if ((txt.value.split(".").length) > 1) {

          //here, It will return false; if the user type another "."

         } 
}
  • 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-06-17T22:19:56+00:00Added an answer on June 17, 2026 at 10:19 pm

    I will reiterate what I said in my comment before the answer:

    And what if the user pastes in a bunch of periods? What if they edit the javascript in their console to completely ignore this check? Make sure you are handling validation correctly and not making too many simplifications.

    Now that we’re proceeding at our own risk, here’s how you would not allow a user typing more than one . (period) in a textbox:

    document.getElementById('yourTextboxIDHere').onkeypress = function (e) {
        // 46 is the keypress keyCode for period     
        // http://www.asquare.net/javascript/tests/KeyCode.html
        if (e.keyCode === 46 && this.value.split('.').length === 2) {
            return false;
        }
    }
    

    Working demo

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

Sidebar

Related Questions

I have a two UIViews filled with UIButtons. I want to only allow one
Assuming that we only have one consumer and our redelivery policy will allow the
I have a page call A Asp.Net and i want to allow only one
I would like to allow only one country access, but exclude proxies within this
I'll like to update the following rewrite condition to only allow one particular subdomain.
I have a program that only allows one instance of itself to run. I
I have the following JS function: function noSpecialChars(element) { element.value = element.value.replace(/[^a-z\u00D1\u00F10-9]*/ig,'').toUpperCase(); } That
I have a javascript code that writes out a list. But the words are
I'm quite new to javascript (okay, I've spent only two days using it!). One
Are there any plugin for eclipse that allows to show only one method from

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.