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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T16:35:28+00:00 2026-06-03T16:35:28+00:00

Can anyone see what is wrong with this bit of jquery code? I get

  • 0

Can anyone see what is wrong with this bit of jquery code? I get an undefined error message on the variable reqButEmpty and consequently it does not run correctly. THank you in advance.

$(document).ready(function(){
    $("#btnCatchReqFlds").on('click', function(){
        alert('made it to this one also');
        var peaches ="hi peaches";
        var reqButEmpty = $('fieldset:visible').find('input[class*="-required"]').filter(function() 
            {
                    alert(peaches);
                    alert('second area 1a');
                    alert(reqButEmpty);
                    return $.trim($(this).val()) === "";
            });
                alert('second area 1b');
                    if(reqButEmpty.length>0)
                    {
                        alert("go here ok");
                        alert(this.length);
                        reqButEmpty.each(function() {
                            $('#hldErrMsg').append("Please fill in the " + this.name + "<br />"); 
                        });
                    }
                    return !reqButEmpty.length;
                });
        });

The html:

<form method="post" action="">
    <div id="holdErrMsg"></div>
    <fieldset id="mainSection" name="mainSection">
                <legend style="color:blue; font-weight:bold">Project Overview Section</legend>

                <table style="width: 100%">
                    <tr>
                        <td style="height: 33px; width: 178px;">Name</td>
                        <td style="height: 33px"><input  id="1125" name="1125" class="1125-required" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="height: 33px; width: 178px;">Email</td>
                        <td style="height: 33px"><input id="1026" name="1026" class="1026-required" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="width: 178px">Product Title</td>
                        <td><input  id="1089" name="1089" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="width: 178px">Product Type</td>
                        <td><select id="1169" name="1169">
                        <option value="">Select</option>
                        <option value="Cars">Cars</option>
                        <option value="Boats">Boats</option>
                        <option value="Planes">Planes</option>
                        </select></td>
                    </tr>
                                        <tr><td>
                                        <button id="btnCatchReqFlds" type="button" name="btn">Check Required Fields</button>
                                        </td></tr>
                                    </table>
            </fieldset>

            <fieldset id="section-11" name="section-11">
                <legend style="color:fuchsia; font-weight:bold">Car Details Section</legend>

                <table cellpadding="2" style="width: 100%">
                    <tr>
                        <td style="width: 334px; height: 35px"><label>Size:*</label></td>
                        <td style="height: 35px"><input id="1245" class="1245-required" name="1245" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="height: 35px; width: 334px">Color:*</td>
                        <td style="height: 35px">
                        <select id="1433" class="1433-required" name="1433">
                <option value="Orange">Orange</option>
                        <option value="Blank">Blank</option>
                        <option value="Green">Green</option>
            </select></td>
                    </tr>
                    <tr>
                        <td style="width: 334px">Description:</td>
                        <td>
                        <textarea id="1290" name="1290" rows="2" style="width: 433px"></textarea></td>
                    </tr>
                </table>
                            </fieldset>

            <fieldset id="section-12" name="section-12">
                <legend style="color:fuchsia; font-weight:bold">Plane Details Section</legend>

                <table cellpadding="2" style="width: 100%">
                    <tr>
                        <td style="width: 334px; height: 35px"><label>Size:</label></td>
                        <td style="height: 35px"><input id="1245" name="1245" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="height: 35px; width: 334px">Color*:</td>
                        <td style="height: 35px">
                                                <input type="checkbox" name="1433[]" id="1433[]" value"Orange" class="1433[]-required"/>Orange
                                                <input type="checkbox" name="1433[]" id="1433[]" value"Blue" class="1433[]-required"/>Blue
                                                <input type="checkbox" name="1433[]" id="1433[]" value"Green" class="1433[]-required"/>Green
                        </td>
                    </tr>
                    <tr>
                        <td style="width: 334px">Description:</td>
                        <td>
                        <textarea id="1290" name="1290" rows="2" style="width: 433px"></textarea></td>
                    </tr>
                </table>
                            </fieldset>
            <fieldset id="section-13" name="section-13">
                <legend style="color:fuchsia; font-weight:bold">Boat Details Section</legend>

                <table cellpadding="2" style="width: 100%">
                    <tr>
                        <td style="width: 334px; height: 35px"><label>Size:</label></td>
                        <td style="height: 35px"><input id="1245" name="1245" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="height: 35px; width: 334px">Color:*</td>
                        <td style="height: 35px">
                                                <input type="radio" name="1834" id="1834" value="None" class="valuetext" class="1834-required">None
                                                <input type="radio" name="1834" id="1834" value="All" class="valuetext" class="1834-required">All
                       </td>
                    </tr>
                    <tr>
                        <td style="width: 334px">Description:</td>
                        <td>
                        <textarea id="1290" name="1290" rows="2" style="width: 433px"></textarea></td>
                    </tr>
                </table>
                            </fieldset><br>
<fieldset id="section-1011" name="section-1011">
                <legend style="color:green; font-weight:bold">Misc Info Section</legend>

                <table cellpadding="2" style="width: 100%">
                    <tr>
                        <td style="width: 334px; height: 35px"><label>Size:</label></td>
                        <td style="height: 35px"><input id="1301" name="1301" type="text" /></td>
                    </tr>
                    <tr>
                        <td style="height: 35px; width: 334px">Color:</td>
                        <td style="height: 35px">
                        <select id="1302" name="1302">
                <option value="Orange">Orange</option>
                        <option value="Blank">Blank</option>
                        <option value="Green">Green</option>
            </select></td>
                    </tr>
                    <tr>
                        <td style="width: 334px">Description:</td>
                        <td>
                        <textarea id="1303" name="1303" rows="2" style="width: 433px"></textarea></td>
                    </tr>
                </table>
                            </fieldset>


</form>​

jquery code:

<script type="text/javascript">

            $(document).ready(function() {
                $('fieldset#section-11,fieldset#section-12,fieldset#section-13').hide(); 
            });//end of close all fieldsets


            $(document).ready(function() {
                var projType = new Array(
                        {value : 'Cars', sect_id : 'fieldset#section-11'},
                        {value : 'Planes', sect_id : 'fieldset#section-12'},
                        {value : 'Boats', sect_id : 'fieldset#section-13'}
                    ); //end of projType array

            $("select#1169").on('change',function () {
                var dropDownVal = $(this).val();
                var sect_id ="";
                    $(projType).each(function() {
                        $(this.sect_id).hide(); //hide all section each time you run thru here
                            if(this.value == dropDownVal) 
                                {
                                    $(this.sect_id).show();
                                }
                    });
            });
            });
$(document).ready(function(){
    $("#btnCatchReqFlds").on('click', function(){
        console.log('inside onclick of button');
        var peaches ="hi peaches";
        var reqButEmpty = $('fieldset:visible').find('input[class*="-required"]').filter(function() 
            {
                    console.log(peaches);
                    console.log('inside var reqButEmpty assignment');
                    console.log(reqButEmpty);
                    return $.trim($(this).val()) === "";
            });
                console.log('just after var reqButEmpty assignment');
                    if(reqButEmpty.length>0)
                    {
                        console.log("inside .length");
                        console.log(this.length);
                        reqButEmpty.each(function() {
                            $('#hldErrMsg').append("Please fill in the " + this.name + "<br />"); 
                        });
                    }
                    return !reqButEmpty.length;
                });
        });

        </script>
  • 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-03T16:35:29+00:00Added an answer on June 3, 2026 at 4:35 pm

    Here:

    $(function () {
        var $button = $( '#btnCatchReqFlds' );
        var $message = $( '#holdErrMsg' );
    
        $button.on( 'click', function () {
            var $reqButEmpty = $( 'input[class*="-required"]', 'fieldset:visible' ).filter(function () {
                return $.trim( $( this ).val() ) === '';
            });
    
            var html = $reqButEmpty.map(function () {
                return 'Please fill in the ' + this.name;
            }).get().join( '<br>' );
    
            $message.html( html );
        });
    });
    

    Live demo: http://jsfiddle.net/jYBPY/3/

    Btw, you had a typo in your code – you wrote "#hldErrMsg" instead of "#holdErrMsg".

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

Sidebar

Related Questions

Can anyone see anything that is wrong with this code it just isn't working...
Can anyone see anything that is wrong with this code it just isn't working...
Can anyone see anything wrong with this login script: public function login($username, $pass, $remember)
I'm at my wit's end with this. Can anyone see anything wrong with this
My Get confirm isn't triggering the query? Can anyone see what I'm doing wrong?
Can anyone tell me what's wrong with this code? class Dataset < ActiveRecord::Base has_many
Trying to convert the following but am having difficulty. Can anyone see where I'm
I'm having a bit of trouble with John Resig's Micro templating. Can anyone help
I should be sleeping but this is really bugging me. I can't get a
I have a simple bit of code as follows: foreach ($someFile in Get-ChildItem) {

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.