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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T23:11:14+00:00 2026-05-22T23:11:14+00:00

I am trying to get a few divs to react to my mouseOver and

  • 0

I am trying to get a few divs to react to my mouseOver and mouseOut. I’m trying to build something similar to the the Vimeo-style volume bar.

I am getting the bars to react to the mouseOver, but I want them to return to their original height after the mouseOut. Each bar is a different height. It works when it is hard-coded, but I’m trying to use as little code as possible.

Here is my JQuery:

$(document).ready(function() {
var totalHeight = '100%';
var initHeight;

function getHeight(h) {
  initHeight = h;
  //alert(initHeight);
}

$("div#barWrap").children().mouseover(function() {
    // This is where I am having trouble. I want to get the original height of the bar so I can reuse it on mouseOut
    getHeight($("div#barWrap").children().css('height')); 
    // Animate bar
    $(this).animate({ height: totalHeight}, 100);
});

$("div#barWrap").children().mouseout(function() {
    $(this).animate({ height: initHeight}, 400);
});

});

Any help would be greatly appreciated.

  • 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-22T23:11:15+00:00Added an answer on May 22, 2026 at 11:11 pm

    Store the initial height as data for each element:

    var totalHeight = '100%',
        $bwc = $('div#barWrap').children();
    
    $bwc.each(function(i,el) {
        $(this).data('height', $(this).height());
    });
    
    $bwc.mouseover(function() {
        $(this).animate({ height: totalHeight}, 100);
    });
    
    $bwc.mouseout(function() {
        $(this).animate({ height: $(this).data('height') }, 400);
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to get a few web development ideas off the ground. Unfortunately I
I'm trying to get into java again (it's been a few years). I never
It seems I am one of the few trying to get Mono's mod_mono to
I am trying to get objects to reference a few globalized variables (before you
Been trying to get my head around while loops for the last few days
I'm trying to get the version number of a specific few modules that I
I've been trying to get this horizontal navigation sorted for the past few hours
I've been trying to get this to work for a good few hours now,
I'm trying to get simplepie to loop through a few rss feeds using codeigniter
I have been struggling for the last few hours trying to get this search

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.