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

The Archive Base Latest Questions

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

I have used the hasClass method before but I have a scenario where is

  • 0

I have used the hasClass method before but I have a scenario where is reporting as not been present although if I output the elements .html() it clearly shows the class is in use by item aswell as other classes.

The element that the class belongs too was dynamically written to the screen. Any ideas what I’m doing wrong?

$('.myList').each(function (index, item) {

    // Check marked as complete
    if (!$(item).hasClass('complete')) {
        // Not complete
        alert('not complete!' + $(item).html());

        completeFlag = false;
        return false;
    }

});

The html output:

<li id="myid" class="class1 class2 complete">some text</li>
  • 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-20T11:25:02+00:00Added an answer on May 20, 2026 at 11:25 am

    I’m guessing you’re checking the list, where you mean to be checking the list items.

    Example of what I think you’re doing:

    HTML:

    <ul class="myList">
      <li>This is not complete</li>
      <li>Nor this</li>
      <li class="class1 class2 complete">But this is</li>
      <li>And this isn't</li>
    </ul>
    

    JavaScript:

    $('.myList').each(function (index, item) {
    
        // Check marked as complete
        if (!$(item).hasClass('complete')) {
            // Not complete
            display('Item not complete: ' + $(item).html());
        }
        else {
            // Is complete
            display('Item IS complete: ' + $(item).html());
        }
    
    });
    

    Live copy (which doesn’t work)

    Here’s how you’d check the items: Change

    $('.myList').each(function (index, item) {
    

    to:

    $('.myList li').each(function (index, item) {
    //         ^--- Note that we're now looping the
    // list *items*, not the list
    

    Live copy

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

Sidebar

Related Questions

I have used the XML Parser before, and even though it worked OK, I
I have used this in my HTML: <q> Hai How r u </q> Which
I have used extension methods to extend html helpers to make an RSS repeater:
I have used traditional version control systems to maintain source code repositories on past
I have used IPC in Win32 code a while ago - critical sections, events,
I have used Photoshop CS2's Save for Web feature to create a table of
I have used an update command to update the whole table in an Sql
I have used getopt in Python and was hoping there would be something similar
T have used checkbox column in gridview. On click of a linkbutton, it should
I have used checkbox column in gridview. I want to check status of that

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.