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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T16:48:04+00:00 2026-06-07T16:48:04+00:00

jQuery Validate, How to give custom error from the custom function based on the

  • 0

jQuery Validate, How to give custom error from the custom function based on the different condition???.

Here is the sample code. This is not my actual code. Here I’m trying to put my problem in the sample code.

I’ve modified the default required functionality with custom function. But how can i give the proper message based on the different conditions.

rules: {
    "data[Model][field1]": {
        required:function(){
            var myValue = $('#myfield').val();
            if( myValue < '5') {
                // Here i want to assign different error message
                return false;
            } else if( myValue > '10') {
                // Here i want to assign different error message
                return false;
            } else {
                return true;
            }
        }
    },
messages: {
    "data[Model][field1]":{ "required":"How can i get the above messages here??" }
}
  • 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-07T16:48:05+00:00Added an answer on June 7, 2026 at 4:48 pm

    The messages option can take functions that return the error messages, so you can write something like:

    rules: {
        "data[Model][field1]": {
            required: function() {
                var myValue = $("#myfield").val();
                return myValue >= 5 && myValue <= 10;
            }
        }
    },
    messages: {
        "data[Model][field1]": {
            required: function() {
                var myValue = $("#myfield").val();
                if (myValue < 5) {
                    return "Value must be greater than 4";
                } else if (myValue > 10) {
                    return "Value must be less than 11";
                }
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

jQuery.validate errorPosition code : errorPlacement: function(error, element) { error.appendTo(element.siblings(label)); }, That code works brilliantly
From jquery.validate.js, this regex is used to validate a number. The problem is that
I am using jQuery validate for validate an input. My code: $('#button').click( function() {
I'm using the jQuery validate plugin to validate a multi-step form like this one:
I am using the jQuery validate plugin . My error labels are styled like
I'm using jQuery Validate plugin and store Error messages in title, e.g.: <input type=text
I'm currently using this jQuery validate plugin and having an issue in IE where
I'm using the fantastic jquery .validate plugin from Jörn Zaefferer at bassistance I'm using
jQuery(document).ready(function(){ $(#submitButton).click(function () { if ( $(#formToSubmit).validationEngine('validate') == true) { $(#formToSubmit).submit(); } }); I
I work with jquery.validate and I search a way how not allow to validator

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.