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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:35:09+00:00 2026-05-26T20:35:09+00:00

OK, this should in theory be simple, but I’ve tried several things like parent

  • 0

OK, this should in theory be simple, but I’ve tried several things like parent, parentsUntil, next and more, and haven’t been able to figure it out.

I’ve got several divs as shown below, each with a hidden and a visible image, and two visible buttons. when you hover over a button, it should show or hide the image that is shown / hidden.

<div class="quarterWidth boxShadow">
    <h2>category</h2>
    <img src="image.jpg" width="180" height="180" alt="xyz" class="normalPic">
    <img src="other.jpg" width="180" height="180" alt="xyz" class="hoverPic">
    <p class="button button180"><a class="trad" href="#">Traditional</a></p>
    <p class="button button180"><a class="contemp" href="#">Contemporary</a></p>
</div>

I have hidden the .hoverPic with jQuery successfully, and when I hover over the a.contemp button, I want the .normalPic image to hide, and the .hoverPic to show, and the opposite would happen when you hover over .trad.

How on earth would you achieve this with jQuery? Here is my pitiful attempt:

$(function() {
    $('.hoverPic').hide();

    $('.contemp').hover(function(){
        $(this).parentsUntil('.boxShadow').next('.normalPic').hide();
        $(this).parentsUntil('.boxShadow').next('.hoverPic').show();
    });

    $('.trad').hover(function(){
        $(this).parentsUntil('.boxShadow').next('.normalPic').show();
        $(this).parentsUntil('.boxShadow').next('.hoverPic').hide();
    });

});
  • 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-26T20:35:10+00:00Added an answer on May 26, 2026 at 8:35 pm

    Personally I’d use .closest() to find the parent div and then use that as a context to find the relevant images:

    $(function() {
        $('.hoverPic').hide();
    
        $('.contemp').hover(function(){
            var $parent = $(this).closest("DIV");
            $('.normalPic', $parent).hide();
            $('.hoverPic', $parent).show();
        });
    
        $('.trad').hover(function(){
            var $parent = $(this).closest("DIV");
            $('.normalPic', $parent).show();
            $('.hoverPic', $parent).hide();
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This should be simple, but I'm getting confused. I have a parent/child tables -
This should be super simple. The first code block works, but when I wrap
This should be quite simple, but I can't work out the syntax. I have
I feel like I should know this but I've been stumped for hours now
This is simple in theory, but difficult for me to figure out. I have
In theory, this code should set the new lock status to the users and
This should be a simple one: I have an observableArray object called To in
This should be a no brainer but I have a small mystery with the
This should be a really, really simple one, I would assume. I'm throwing together
This should be a simple answer. I'm just not knowledgeable enough in CSS to

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.