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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T16:14:22+00:00 2026-06-02T16:14:22+00:00

I have the following code: $(#rade_img_map_1335199662212).hover(function () { $(li#rs1).toggleClass(active); //Toggle the active class to

  • 0

I have the following code:

$("#rade_img_map_1335199662212").hover(function () {
     $("li#rs1").toggleClass("active");  //Toggle the active class to the area is hovered
     $("li#rs1").fadeIn("slow");
});

I need to add the class active then fadeIn. I have css which has li'rs1 set to visibility:hidden and when the class is applied i simply style that.

How can i utilise fadeIn?

Also am i structuring this right? – I have 13 different li#rs1, li#rs2 … all the way to li#rs13 with different image map ids. This is why i think i need 13 blocks of code.

EDIT: I have area ids so need need to reduce the code down:

$(document).ready(function () {
    $("map#rade_img_map_1335255669666 area#1").hover(function () {
             $("li#rs1").toggleClass("active");  //Toggle the active class to the area is hovered
    });
});
  • 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-02T16:14:25+00:00Added an answer on June 2, 2026 at 4:14 pm

    Your selector can pick up all the relevant items like this:

    var $items = $("#rs1, #rs2, #rs3, #rs4, #rs5, #rs6, #rs7, #rs8, #rs9, #rs10, #rs11, #rs12, #rs13");
    

    OR, if you have an id on the list (e.g.: <ul id='myUlId'>), it’s even easier:

    var $items = $('#myUlId li');
    

    Then:

    $("#rade_img_map_1335199662212").hover(function () {
        $items.toggleClass("active").fadeIn("slow");  //Toggle the active class to the area is hovered and fade in.
    
    });
    

    UPDATE …or even easier yet, cover it all in one fell swoop!:

    $("#rade_img_map_1335199662212").hover(function () {
        $('#myUlId li').toggleClass("active").fadeIn("slow");  //Toggle the active class to the area is hovered and fade in.
    
    });
    

    UPDATE 2
    To apply to an li with an id corresponding to the hovered area:

    $("#rade_img_map_1335199662212 area").hover(function () {
        var areaId = $(this).attr('id'); //grab the hovered area's it
        var $li = $('li#rs' + areaId); //select an li based on the hovered area
        $li.toggleClass("active").fadeIn("slow");  //Toggle the active class  and fade in.
    
    });
    

    UPDATE 3
    …if the area doesn’t have an id, then you’ll need a way to scrape the appropriate number out of some other attribute that contains it, like an href. Say the hrefs all have the index numbers somewhere in them in a regular patter, and, say, no other numbers, then you could grab them using

    var href = $(this).attr('href');
    var id = href.match(/\d+/)
    

    if you have control over the map’s markup structure, the coolest (HTML5, but backward-compatible) thing would be to place the indexes in a data- attribute like this:

        <area data-li-id="4">
    

    Then grab a slector for the li in one line inside the hover function for the area like this:

    var $li = $('li#' + $(this).attr('data-li-id'));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written the following code: $(document).ready(function () { $(#rade_img_map_1335199662212).hover(function () { $(li#rs1).addClass(active); //Add
i have following code: class Item < ActiveRecord::Base belongs_to :user has_many :transactions #scope :active,
I have following code class User attr_accessor :name end u = User.new u.name =
I have following code snippet that i use to compile class at the run
I have following code snippet: class ABC{ public: int a; void print(){cout<<hello<<endl;} }; int
I have following code in a html form <select name=category class=input onchange=ShowTB(this,'suggest');> <option value=0
I have following code: public abstract class Operand<T> { public T Value { get;
I have following code public partial class MainWindow : Window { public MainWindow() {
I have following code that displays an Image with letters, public class MainActivity extends
I have following code in Java: import java.util.*; public class longest{ public static void

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.