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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T20:25:31+00:00 2026-05-20T20:25:31+00:00

I have a small question about using jquery. I have the following code: <html>

  • 0

I have a small question about using jquery.
I have the following code:

<html> 
<head>

    <script src="jquery/jquery.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
      $("form").submit(function(){
       if(!$(':text').val()){
        $("span").text("sdfgsd").show();

        };return false;
      })
      });
    </script>
</head>
<body>
    <form action=""  id="ff" >
       <span></span>
        <input type="text" name="test" /> <br />
        <input type="text" name="test3" /> <br />
        <input type="checkbox" name="test2" /> <br />
        <input type="submit" value="push it" />
    </form>

</body>

the problem is that the selector is only activated for the first textbox. if you enter a value in the first textbox the trigger is not activated. neither :text or :input work properly.

does anyone have any ideas??

thanx in advance,
denisr

  • 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-20T20:25:31+00:00Added an answer on May 20, 2026 at 8:25 pm

    I’d suggest you to do something like that:

    <html> 
    <head>
        <script type="text/javascript">
            $(document).ready(function() {
                $("#ff").submit(function(e) {
                    $('.text-input').each(function() {
                        if ($(this).val() == '') {
                            $("#msg").text("sdfgsd");
                            e.preventDefault();
                            return false;
                        }
                    });
                });
            });
        </script>
    </head>
    <body>
        <form method="post" action=""  id="ff">
            <span id="msg"></span>
            <input type="text" class="text-input" name="test" /> <br />
            <input type="text" class="text-input" name="test3" /> <br />
            <input type="checkbox" name="test2" /> <br />
            <input type="submit" value="push it" />
        </form>
    </body>
    </html>
    
    • Try to use as much as possible the id or class attributes to access elements because it’s more efficient and less prone to errors
    • Use e.preventDefault() to prevent from submitting the form
    • Use return false; to get out of the each loop right away
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a small webapp in Grails and I have the following question regarding
I have an small question I didn't found an answer yet: how do I
I have a small VB.NET application that I'm working on using the full version
hope all of you doing well. I have small question in C#.Net. actually i
A small question concerning downloading xml files from a remote server. I am using
I'm developing a torrent with Java and there is a small question I have.
I have small page which has label, DropDownList and a submit button. <div> <asp:label
I have small problem with my .net 2.0 winforms application. I want to embed
Where I work, we have small teams of 2 - 5 people. As a
I have a small JS function that does Ajax for me and another like

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.