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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T15:49:45+00:00 2026-05-30T15:49:45+00:00

How can I target the element that only exists next to my target element.

  • 0

How can I target the element that only exists next to my target element. For example…

HTML

<a class="toolTips">sdas</a><div class="toolTip">Yay</div>

I have these littered all over my html.

Jquery

$('.toolTips').mouseover(function() {
     $(this).next('.toolTip').fadeIn('100');
});

But this targets all the elements that exist after .toolTips, I only want to target the one that exists right after .toolTips?

  • 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-30T15:49:46+00:00Added an answer on May 30, 2026 at 3:49 pm

    As per jQuery documentation, next should only return one element. So you’re most likely not providing us the actual code that you’re using.

    If you’d present an example in JSFiddle to show us the issue it would be easier for us to pinpoint the problem.

    but whenever you have a jQuery set of elements you can always reduce to a single one by using eq function:

    $('.toolTips').mouseover(function() {
        $(this).next('.toolTip').eq(0).fadeIn('100');
    });
    

    or use different selector

    $('.toolTips').mouseover(function() {
        $(this).next('.toolTip:first').fadeIn('100');
    });
    

    Script-less solution that uses CSS

    You can as well use a script-less solution that uses just CSS styling and if CSS3 is supported also does animated fading:

    .toolTip {        
        opacity: 0;
        filter: alpha(opacity=0);
        position: absolute;
        display: inline-block;
        border: 1px solid #ccc;
        background-color: #eee;
        margin-left: 5px;
        padding: 2px 5px;
        /* CSS3 transitions */
        transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s;
    }
    a.toolTips:hover + .toolTip {
        opacity: 1;
        filter: alpha(opacity=100);
    }​
    

    This is of course a solution for newer browsers, because CSS transitions aren’t supported by older versions (or IE that is as well). But those that don’t support transitions, will nicely just show and hide these tips without animation. Even IE should work nicely.

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

Sidebar

Related Questions

how can i get immediate parent of a given element ? $(e.target).parent() ?
I'm trying to find a jQuery selector that will match only the element that
Is there some attribute in WPF that I can add to element, so when
I know in Visual Studio 2008 you can target a specific framework with your
Normally we can specify a target in the link or use javascript window.open to
In MSBuild you can data drive target dependencies by passing a item group into
setTimeout(target.mousedown, 200) doesn't seem to work. I can do setTimeout(target.mousedown(), 200) , but this
When you compile windows application in .NET you can set Platform Target to be
Can the sourcecontrol block in CruiseControl.NET target TortoiseSVN?
How can I change the target of a symlink with PHP? Thanks.

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.