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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:31:10+00:00 2026-05-18T20:31:10+00:00

how can i simplify this code? The Mouse-Events are all quite similar. Therefore there

  • 0

how can i simplify this code? The Mouse-Events are all quite similar. Therefore there should be a way to shorten the code.

THANKS,
Johannes

 var $allItems   = $('ul.image-grid li'),
    $kindertanzItems  = $('li[data-type=kindertanz]'),
    $urbanItems   = $('li[data-type=urban]'),
    $ethnoItems   = $('li[data-type=ethno]'),
    $gesundheitItems  = $('li[data-type=gesundheit]');


   $kindertanzItems.hover(function(){
    $allItems.each(function(){
     $(this).css("opacity","0.1"); 
    });
    $kindertanzItems.each(function(){
     $(this).css("opacity","1").css("background-color","#232628").css("border-color", "black"); 
    });
   }).mouseleave(function(){
    $allItems.each(function(){
     $(this).css("opacity","1"); 
    });
    $kindertanzItems.each(function(){
     $(this).css("background-color","#33373b").css("border-color", "#222527"); 
    });
   });


   $urbanItems.hover(function(){
    $allItems.each(function(){
     $(this).css("opacity","0.1"); 
    });
    $urbanItems.each(function(){
     $(this).css("opacity","1").css("background-color","#232628").css("border-color", "#101011"); 
    });
   }).mouseleave(function(){
    $allItems.each(function(){
     $(this).css("opacity","1"); 
    });
    $urbanItems.each(function(){
     $(this).css("background-color","#33373b").css("border-color", "#222527"); 
    });
   });


   $ethnoItems.hover(function(){
    $allItems.each(function(){
     $(this).css("opacity","0.1"); 
    });
    $ethnoItems.each(function(){
     $(this).css("opacity","1").css("background-color","#232628").css("border-color", "black"); 
    });
   }).mouseleave(function(){
    $allItems.each(function(){
     $(this).css("opacity","1"); 
    });
    $ethnoItems.each(function(){
     $(this).css("background-color","#33373b").css("border-color", "#222527"); 
    });
   });


   $gesundheitItems.hover(function(){
    $allItems.each(function(){
     $(this).css("opacity","0.1"); 
    });
    $gesundheitItems.each(function(){
     $(this).css("opacity","1").css("background-color","#232628").css("border-color", "#101011"); 
    });
   }).mouseleave(function(){
    $allItems.each(function(){
     $(this).css("opacity","1"); 
    });
    $gesundheitItems.each(function(){
     $(this).css("background-color","#33373b").css("border-color", "#222527"); 
    });
   });
  • 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-18T20:31:11+00:00Added an answer on May 18, 2026 at 8:31 pm

    You’re only applying styles – therefore you should be using CSS not Javascript.

    Create a CSS file and add the following:

    ul.image-grid:hover {
       /* Opacity and color rules for whole ul in here */
    }
    

    And instead of identifying <li>s by their data-type, you should add classes to them, so you can do:

    ul.image-grid > li.kindertanz:hover {
       /* Opacity and color rules for this li in here */
    }
    

    Update: The requirement is to highlight not only whichever <li> the mouse is hovering over, but also every other <li> with the same data-type. The Javascript to do this is:

    var $allItems = $("ul.image-grid li");
    
    // Notice that hover() can take two functions,
    // one for mouseenter, one for mouseleave
    $allItems.hover(function () {
       // Mouseenter
       $allItems.css("opacity", "0.1"); // No need for each(),
                                        // jquery will apply to all elements
    
       // Depending on your jquery version...
       // If you're using jQuery 1.4.3+ you can do this:
       var type = $(this).data("type");
       // If you're using jQuery 1.4.2 and below, you have to do this:
       var type = $(this).attr("data-type");
    
       // Get all items of the same type
       $("li[data-type=" + type + "]").css({
           // You can set multiple CSS rules in one go like this
           "opacity": "1",
           "background-color": "#232628",
           "border-color": "black"
       });
    }, function () {
       // Do something similar on mouseleave
    });
    

    Hope that finally helps!

    Sidenote: while the above will work, I’d recommend setting a CSS class for the highlighted state. That way instead of messing with all the CSS attributes in your javascript, you can simply do .removeClass("highlight") for all items, and .addClass("highlight") for the others.

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

Sidebar

Related Questions

how can i simplify this code? The Mouse-Events are all quite similar. Therefore there
Is there a way that I can simplify this code: var topic_html = obj.$form.find(#select-topic).html();
Can someone help me simplify this code? Is there a way I can permanently
Can you simplify this code?. Is there anything we can do to make it
Hi I'm trying to simplify this code but can't think which way to do
This following code is taken from Backbone.js Events#off() How can I simplify the IF
My question is similar to this one , but I can simplify it some.
Can anyone help me figure out how I could simplify this code, without using
Okay, I believe that I can simplify this line of code except I can't
How can I simplify this code? if needed I can rename the .php files

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.