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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T01:10:34+00:00 2026-05-25T01:10:34+00:00

I have the code that you can check in this fiddle: http://jsfiddle.net/4SCrp/5/ <form id=my_form>

  • 0

I have the code that you can check in this fiddle:
http://jsfiddle.net/4SCrp/5/

<form id="my_form">
    <input id="formfield1" type="text" maxlength="3" value="">
    <br/>
    <input id="formfield2" type="text" maxlength="3" value="">
    <br/>
    <input type="submit" value="submit">
</form>

and th followin script using jquery.validate plugin

$("#my_form").validate();

$('#formfield1').rules('add', {
    required: true,
    digits: true,
    max: 255
});

$('#formfield2').rules('add', {
    required: true,
    digits: true,
    max: 2
});

It is supposed to acept a maximum of 255 in the first field and a maximum of 2 in the second. But both give the error “Please enter a value less than or equal to 2.” so it takes for all the last max defined.

Do you know how to solve that problem?

  • 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-25T01:10:35+00:00Added an answer on May 25, 2026 at 1:10 am

    Its maxlength you need – not max check here -> http://docs.jquery.com/Plugins/Validation/Methods/maxlength#length

    Try specifying the rules as follows :

    $("#my_form").validate({
        rules: {
            formfield1: {
                required: true,
                digits: true,
                max: 255
            },
            formfield2: {
                required: true,
                digits: true,
                max: 2
            }
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please have a look at this fiddle: http://jsfiddle.net/mrmartineau/53fkV/embedded/result/ The intended outcome is that when
Hi guys I have this code that checks linkback: $reciprocal_linkback = reciprocal_linkback($contenturl,http://www.mydomain.com,1); if ($reciprocal_linkback==0)
I have a subclass of UITableViewController. I have code that can add/remove a UISearchBar
I have code that uses jquery.slideup and jquery.slidedown How can i know that div
I have a section of code that can be summarised as follows; void MyFunc()
I have code in my Page_load method that can take up to a few
I have code that generates a List<string[]> variable but can't quite figure out how
I currently have code in objective C that can pull out an integer's most
I have a thread in my application that is running code that can potentially
I have a piece of code (below) that can get the text of an

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.