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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T00:09:28+00:00 2026-05-24T00:09:28+00:00

I have the following code: <h1><a href=# class=link>Click here</a></h1> <div class=acitem></div> <div class=acitem2></div> <script>

  • 0

I have the following code:

<h1><a href="#" class="link">Click here</a></h1>
<div class="acitem"></div>
<div class="acitem2"></div>

<script>
    $(document).ready(function() {
        $('a.link').click(function() {
            var element = $(this).next();

            alert(element.attr('class'));
        });

    });
</script>

When I have the ‘click here’ link wrapped inside an H1 tag, the alert call returns ‘undefined’, but if I remove the H1 tag from the link, then the alert call correctly returns ‘acitem’. With the H1 tags in place, I have also tried:

$(this).nextUntil('.acitem')

But this still returns ‘undefined’.

I am a bit confused as to how the next() function works in JQuery. Anyone know why the next function works correctly only if I remove the H1 tags from the link? Is there something I am doing wrong?

Thanks!

  • 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-24T00:09:30+00:00Added an answer on May 24, 2026 at 12:09 am

    next() works for siblings, in your structure, <a> is the only child <h1> has, so calling next() would technically returns nothing as <a> is the only son of <h1>. Hence why it works if you remove <h1>

    Quoting the docs:
    Get the immediately following sibling of each element in the set of matched elements. If a selector is provided, it retrieves the next sibling only if it matches that selector.

    http://api.jquery.com/next/

    nextUntil() gets a set of elements starting from the selector up to but excluding the selector given as argument, quoting the docs: Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed.

    http://api.jquery.com/nextUntil/

    About your query, you can call .parent() prior to calling next() to make sure you are getting the sibling of its parent (i.e. his uncle)

    <script>
        $(document).ready(function() {
            $('a.link').click(function() {
                var element = $(this).parent().next();
    
                alert(element.attr('class'));
            });
    
        });
    </script>
    
    • 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: <script type=text/javascript> $(document).ready(function() { $(#thang).load(http://www.yahoo.com); $(.SmoothLink).click( function() { $(#thang).fadeOut();
I have the following code that works: <script type=text/javascript> $(document).ready(function() { // Initialise the
I'm currently using the following code for my read more buttons: $(document).ready(function() { $("a.more-link").attr("href",
I have the following code: <li class=zoneName><a href=/Default.aspx?PageID=4869007>CYKF</a></li> <li class=zoneName><a href=/Default.aspx?PageID=4868459>YKA</a></li> I need to
I have the following function: $(a#mylink).click(function(e){ e.preventDefault(); $.ajax({ url: $(this).attr(href) }); $(this).parent().parent().fadeOut(slow); }); A
I have the following link which opens a jquery modal window: <div id='confirm-dialog'><a href='#'
I have following code class User attr_accessor :name end u = User.new u.name =
i have following code to show div on page <div id=all_users> <div id=user11 userid=11
I have following code snippet that i use to compile class at the run
I have following code: public static void ProcessStep(Action action) { //do something here if

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.