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

The Archive Base Latest Questions

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

Ні, all! I have a little question about jQuery.Validation plugin: – Can I complete

  • 0

Ні, all!

I have a little question about jQuery.Validation plugin: – Can I complete validation for input fields that are not form fields (i.e no in the “form” tag) using jQuery.Validation plugin?

Thanks.

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

    Yes you can, but the field still needs to be inside a set of <form> tags. However, you do not need to “submit” this form in order to check validation on the field(s) inside. You use the .valid() method to check this form independently of form submission.

    http://jsfiddle.net/9fgVN/13/

    <form id="myNonsubmitForm" action="#">
        <textarea name="comments" id="comments" rows="5" cols="30"></textarea>
    </form>
    
    <button id="myButton">Click to Check Validation Status</button>
    <input type="text" id="output" />
    

     

    $(document).ready(function() {
    
        $("#myNonsubmitForm").validate({
            validClass: 'valid',  // as per your configuration
            rules: {  // set rules as per your configuration
                comments: {
                    required: false,
                    maxlength: 10
                }
            },
            errorPlacement: function(error, element) {
                 // use this to control placement of error messages
                 // removal of errorPlacement handler will result in message appearing next to field automatically.
            }
        });
    
        $("#myButton").click(function() { // validate on button click for this example
            if($("#myNonsubmitForm").valid()){
                $('#output').val('passed');
            } else {
                $('#output').val('failed');
            };
        });
    
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hello and good day to all. I have a little question about like statement
So, this question may be a little vague, but I have constant discussions about
I have a little question about my URL . I use a tree view
I have a question about Sql database in android.Now Ive done the all Notepad
I just have a little question about running Qt created apps on different operating
Since I am a noob about SNMP I will have a little question for
I have a question about the errorPlacement Method in jQuery Validator Plug-in: I want
I have done a little Django development, but it has all been in a
i have a screen with multiple little widgets (all with different divs around them).
I have three classes that all have a static function called 'create'. I would

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.