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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T01:41:49+00:00 2026-05-20T01:41:49+00:00

I need to find, via jQuery selectors, all spans in a page that have

  • 0

I need to find, via jQuery selectors, all spans in a page that have no class.

Example:

<span class='Cool'>do not found me</span>
<span>me, me, take me please!!!</span>
  • 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-20T01:41:50+00:00Added an answer on May 20, 2026 at 1:41 am

    Use :not() and the attribute not selector [att!=val] to filter out elements with a non-empty class attribute:

    $('span:not([class!=""])')
    

    jsFiddle preview

    Note however that [att!=val] is a non-standard jQuery selector, which means the selector cannot be used in CSS or with document.querySelectorAll(). If you’re like me, and you’re a stickler for following the standards and so want to eschew non-standard jQuery selectors where possible, the following is a direct equivalent:

    $('span:not([class]), span[class=""]')
    

    This matches

    • span elements that have no class attribute, and
    • span elements that do have a class attribute, but only when the attribute value is empty.

    In most cases, though, you should be able to get away with just the first portion:

    $('span:not([class])')
    

    You’ll usually only find empty class attributes in markup generated by the application that’s responsible for outputting it, or by developers who aren’t paying attention.

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

Sidebar

Related Questions

I have an html page that calls some javascript and jQuery functions and also
I need to find all the occurences of a file Test.TXT in c:\ or
I need to find the coordinates of windows open even when they are not
I need to find a silence in a mp3 file. Simple as that. For
I need to find a way to get actual page size in Google Chrome.
I need to find the longest sequence in a string with the caveat that
I have found exactly what I need on the jQuery UI examples: Collapsable Content
I have a bit of javascript/jquery code that takes a long string, and sends
I am trying to create a form that posts data via jQuery and populates
I am currently developing jquery code that sends data to the server via ajax

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.