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

  • Home
  • SEARCH
  • 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 1049485
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:37:27+00:00 2026-05-16T16:37:27+00:00

I need to validate a textbox that it should allow only certain characters and

  • 0

I need to validate a textbox that it should allow only certain characters and after the limit is reached the textbox should not allow entering characters in it.It can be done by Javascript but dont know how to do.. Anyone please 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-16T16:37:28+00:00Added an answer on May 16, 2026 at 4:37 pm

    Here I have provided a 2 solutions:
    1)js function ‘TextLimit’:which keeps a check on count of characters typed into the textbox.
    2)maxlength attribute: specifies the maximum length (in characters) of an input field.

    <HTML>
    <HEAD>
    <TITLE>Test</TITLE>
    <script>
    function TextLimit(){
        var text = document.getElementById('myinput');
       if (text.value.length > 10){
            alert('You exceeded the limit');
            text.value = text.value.substring(0,10);
        }
    }  
    </script>
    </HEAD>
    <BODY>
    <input name="myinput" type="text" value='' id="myinput" onkeyup="TextLimit()">
    <br>
    //this is using the maxlength attribute of textbox
    <input type="text" name="inputtext" maxlength="10">
    </BODY>
    </HTML>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 512k
  • Answers 512k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The files are read protected. You need to root your… May 16, 2026 at 5:36 pm
  • Editorial Team
    Editorial Team added an answer Since you want the elements in the TreeView to have… May 16, 2026 at 5:36 pm
  • Editorial Team
    Editorial Team added an answer C# doesn't have any exact equivalent to that. However, you… May 16, 2026 at 5:36 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I am wanting to have a numbers/currency only textbox control. So basically it should
one of the fields on my form is a textbox that the user types
We are using a RegEx Validator to validate an input from a textbox. The
This seems like it should have a simple solution but I can't seem to
I need to validate a form in php and display some error messages in
I have a C# form with multiple text boxes. Before proceeding I need to
This is my first question here on stack overflow. i need help on a
I work on a web application that modifies a XML document that is stored
I'm running into real difficulties validating XML with XSD . I should prefix all
I have n number of textboxes on a form. After the user enters a

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.