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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:35:23+00:00 2026-05-22T21:35:23+00:00

I am trying to make my jQuery form validator work. I spent already 5

  • 0

I am trying to make my jQuery form validator work. I spent already 5 hours making it work, researching and stuff, but until now I can’t.

My code is as follows:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<link rel="stylesheet" type="text/css" href="style.css" />

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/validationEngine.jquery.css" type="text/css"/>
  <script>
        $(document).ready(function(){
            $("#formID").validationEngine();
        });
  </script>

</head>
<body>
    <div id="headerBar" ><h1>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The Book of Joy!</h1></div>
    <div id="content" align="center">
    <div id="contentText" align="center">Be a part of our team of IT experts. Apply now!</div>
        <div id="leftContent" align=center></div>
        <div id="rightContent" align=left>
        <b>Signup now!</b>
        <hr>

            <form  id="formID" method = "post" action = "AddApplicantServlet"> 
                <fieldset>
                    <legend id="legendid">Applicant Registration Form</legend>
                    <table>
                        <tr><td>First Name:               </td><td><input type = "text" name = fName class="validate[required,custom[onlyLetterSp]]">           </td></tr>
                        <tr><td>Middle Name:              </td><td><input type = "text" name = mName class="validate[required,custom[onlyLetterSp]]">           </td></tr>
                        <tr><td>Last Name:                </td><td><input type = "text" name = lName class="validate[required,custom[onlyLetterSp]]">           </td></tr>
                        <tr><td>Age:                      </td><td><input type = "text" name = age   class="validate[required,custom[onlyNumberSp]],maxSize[2]">  </td></tr>
                        <tr><td>Gender:                   </td><td><select name = gender><option value='m'>Male</option><option value='f'>Female</option> </select>  </td></tr>
                        <tr><td>Email Address:            </td><td><input type = "text" name = email class="validate[required,custom[email]]">        </td></tr>
                        <tr><td>Contact No:               </td><td><input type = "text" name = contactNumber class="validate[required]"></td></tr>
                        <tr><td>City of Residence:        </td><td><input type = "text" name = city   class="validate[required]">         </td></tr>
                        <tr><td>School:                   </td><td><input type = "text" name = school class="validate[required]">       </td></tr>
                        <tr><td>Course:                   </td><td><input type = "text" name = course class="validate[required]">       </td></tr>
                        <tr><td>Year Graduated:           </td><td><input type = "text" name = yearGraduated class="validate[required,custom[onlyNumberSp]],maxSize[4]"></td></tr>
                        <tr><td>Previous Work Experience: </td><td><input type = "text" name = yearWorkExp class="validate[required,custom[onlyNumberSp]],maxSize[2]">  </td></tr>
                        <tr><td>Sourcing Channel:         </td><td><select name = sourceChannel> 
                            <option value='Jobstreet'>Jobstreet</option>
                            <option value='Direct'>Direct</option>
                            <option value='Referral'>Referral</option>
                            <option value='Board Exam'>Board Exam</option>
                            <option value='Oath Taking'>Oath  Taking</option>
                            <option value='GradList'>GradList</option> 
                         </select></td></tr>
                            <tr><td> <input type = "submit" value = SUBMIT></td></tr>
                    </table>
                </fieldset>
            </form>
            <hr>
        </div>
    </div>

Why is it not working and how can I solve it?

EDIT: I used chromebug and it cannot find my js… Did I put it on the correct path?

Here are my files:

enter image description here

This is my chromebug and i don’t know what it means.. :(:

enter image description 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-05-22T21:35:24+00:00Added an answer on May 22, 2026 at 9:35 pm

    You forgot to import the plugin’s .js files. As per the plugin documentation you should be adding the following lines as well:

    <script src="js/jquery.validationEngine-en.js" type="text/javascript" charset="utf-8"></script>
    <script src="js/jquery.validationEngine.js" type="text/javascript" charset="utf-8"></script>
    

    (and make sure that those files are made available by your webapp as well, i.e. they don’t return 404)

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

Sidebar

Related Questions

I am trying to make a popup dialog form with jQuery UI, but the
I'm trying to make a drop down menu using javascript/jquery but can't get my
I'm trying to use the jQuery Validation plugin to make a multistep form with
Hi i was im trying to make a jquery ajax submit form, and im
I'm trying to make a div fade out with jquery after the form validates
I'm having a hard time trying to make jquery.form with a cross-domain request. I'm
Hi I am trying to make a jquery no conflict work as descriped here:
I'm trying to make a code live preview form with jQuery, so when people
I am trying to make a Ajax form Submission in Jquery. The form itself
I am trying to make a jquery menu that when I click on one

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.