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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T12:15:24+00:00 2026-06-09T12:15:24+00:00

At the moment I’m using the below function to perform a simple slide… function

  • 0

At the moment I’m using the below function to perform a simple slide…

function jeans(jean, links) {

$(links).hide();

$(jean).hover(

  function() {
        $(links).show('slow');
    },

  function() {
        $(links).hide('slow');
});}

And calling it where required with…

jeans('#red-jeans', '#red-jeans ul');
jeans('#blue-jeans', '#blue-jeans ul');
jeans('#yellow-jeans', '#yellow-jeans ul');

I’d like to be able to perform this by just attaching a class on the parent “#red-jeans”.

I’m tring something like

function jeans(selector) {

$(selector 'ul').hide();

$(selector).hover(

  function() {
        $(selector 'ul').show('slow');
    },

  function() {
        $(selector 'ul').hide('slow');
});}

…but my syntax is atrocious!

If someone can point me in the right direction it would be very much appreciated!


The issue is now that the slide runs on every element I’ve got the class on. Can anyone recommend an amend that would only activate it on the current hover? I presume a (this) is needed somewhere…

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-06-09T12:15:25+00:00Added an answer on June 9, 2026 at 12:15 pm

    There are several ways you could achieve this in a clean way:

    $(selector).find('ul')
    $(selector + ' ul')
    $('ul', selector)
    

    are all equivalent.

    In general I recommend you cache the selectors if you use them more often, because calling $() with a selector inside might be quite expensive. This way you have better performance and less trouble when refactoring.
    To make the slides dependent on your current hover, use $(this) instead of the general selector.

    function(selector){
    
      var $element = $('ul', selector);
    
      $element.hide();
    
      $(selector).hover(
        function() {
            $(this).find('ul').show('slow');
          },
        function() {
            $(this).find('ul').hide('slow');
      });
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

At moment I want to implement picture upload without using any plug-ins. My upload
There is a moment in my app, that I need to force to show
At the moment I'm using bat file to launch my jar and set the
At the moment I'm using all sorts of if statements and substrings in order
At the moment I have about 2000 trades which are priced using excel. I
At the moment I am trying to validate a form using PHP. The problem
at the moment we're using SVN (yeah, I know that's shame :)) and we're
At the moment I am using this to call the TabHost activity to change
Ignoring price for the moment, would using Unity for a 2D game be better
at the moment i am using a while (true) loop to do this. I

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.