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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T03:08:19+00:00 2026-06-01T03:08:19+00:00

How can I select elements (using jQuery) that do not contain any elements? For

  • 0

How can I select elements (using jQuery) that do not contain any elements?

For example, in the following tree:

<div class="a">
    <div class="b">
        <div class="c"></div>
    </div>
    <div class="d"></div>
    <div class="e">Lorem</div>
</div>

Only the <div>s with class c, d, and e will be selected.

  • 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-01T03:08:20+00:00Added an answer on June 1, 2026 at 3:08 am
    $(':not(:has(*))')...
    

    LIVE DEMO

    If you want to do it with the filter function, be aware that > element will be deprecated in next jQuery versions!

    you can use this:

    $('*').filter(function(){
            return $('*', this).length == 0
        })
    

    :empty selector won’t work here because there is text node in the <div class="e">


    use :empty selector:

    $(':empty')...
    

    docs:

    Description: Select all elements that have no children (including text nodes).

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

Sidebar

Related Questions

Using a jQuery selector, is it possible to select all elements that are not
I can select the first item in the div using $('.class:first') Now since I
I am using a JQuery Plugin, which uses following line var inputSelector = 'input[class]:not(:button|:submit|:reset),
Using jquery, I want to select input[type=text] elements which has a title attribute(not a
How can I select multiple elements using a WHERE...IN... type of clause as in
Trying to make a make generic select control that I can dynamically add elements
Using jquery, how can I select all the DIVs in my document with ID
I am using jQuery 1.3.2, and I'm trying to select some elements in an
I have an IE bug that I'm not sure how to fix. Using jQuery
How do you select only visible elements using jQuery? jQuery selectors :visible and :hidden

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.