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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T18:51:13+00:00 2026-05-28T18:51:13+00:00

I am using the following jQuery code to count the number of text fields

  • 0

I am using the following jQuery code to count the number of text fields that have a value that is the same as its title attribute.

$(".textfield").val( $(".textfield").attr('title') ).size();

Problem: How do I count the number of text fields that do not have a value equal to its title attribute?

  • 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-28T18:51:13+00:00Added an answer on May 28, 2026 at 6:51 pm

    First of all, the code you post is not doing what you say it does. This:

    $(".textfield").val( $(".textfield").attr('title') ).size();
    

    Will set the value of all elements with class “.textfield” to the title of the first “.textfield” element’s title attribute, and then return a count of all of them.

    You need to compare the return of the .val() method (with no parameter it returns the current value) with the return of the .attr('title') method. You can do this with .filter() and then check the .length of the resulting jQuery object:

    $('.textfield').filter(function() {
        var $this = $(this);
        return $this.val() == $this.attr('title');
    }).length;
    

    And then to get a count of those where the value is not equal just do the same thing except with != instead of ==. So:

    $('.textfield').filter(function() {
        var $this = $(this);
        return $this.val() != $this.attr('title');
    }).length;
    

    (Note that .length will give you the same count as .size() but without the overhead of a function call.)

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

Sidebar

Related Questions

I have the following code to count and trigger some functions using jQuery: jQuery('#input_guideName').keyup(function(e)
I have just started using jQuery and although following code gets the job done,
I'm using jQuery with rails and have the following piece of code $('#related').html(<%= render
I have the following snippet of code (I'm using jQuery 1.4.2): $.post('/Ads/GetAdStatsRow/', { 'ad_id':
I have the following jQuery code which I'm using to populate a jqGrid. It
Hallo, I have following jquery code for calling ASP.NET MVC controller method that is
Following is a piece of jquery code that is driving me nuts var count
I'm using the following code to count up from a starting number. What I
I am using the following jquery code: $(#top ul li.corner).mouseover(function(){ $(span.left-corner).addClass(left-corner-hover); $(span.right-corner).addClass(right-corner-hover); $(span.content).addClass(content-hover); }).mouseout(function(){
I am using the following code to show a jQuery UI dialog when the

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.