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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T07:02:35+00:00 2026-05-24T07:02:35+00:00

Hey guys for some strange reason I can’t get this to work…I just need

  • 0

Hey guys for some strange reason I can’t get this to work…I just need a simple effect on hover where if the link is hovered upon, the padding-left changes to a certain pixels..

jQuery("nav li ul li").hover(function() {
     var padding = parseInt(jQuery(this).find("> a").css("paddingLeft");
         var new_padding = (padding + 5);   
     jQuery(this).find("> a").stop(true,true).animate({ paddingLeft: new_padding},200);
     }, function() { jQuery(this).find("> a").animate({ paddingLeft: padding},200);}
);

So the above I am just trying to say move the padding left to 5 more than the original and move it back to original when mouse out. The above keeps moving to the right with padding and doesn’t go back for some reason…I know I am missing something simple..

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-05-24T07:02:36+00:00Added an answer on May 24, 2026 at 7:02 am

    I would strong suggest you use += and -= animation capabilities in jQuery to add and remove a fixed amount from the padding. That way you can do everything a lot simpler without actually fetching the value of the padding or having to keep track of anything in variables. See http://api.jquery.com/animate/ for examples. Using this will also solve the scoping problem you have with the new_padding variable because you won’t need it any more.

    Then, I don’t think the find(“> a”) is necessarily doing what you want. If you just want to find “a” tags that are children of the nav li ul li that is being hovered over, then you should just do find(“a”). That will find descendants of all the matches selectors in the first call that are “a” tags.

    I think you can use something like this:

    jQuery("nav li ul li").hover(
         function() {
             jQuery(this).find("a").stop(true,true).animate({paddingLeft: "+=5"},200);
         }, 
         function() { 
             jQuery(this).find("a").stop(true, true).animate({paddingLeft: "-=5"},200);
         }
    );
    

    You can see it work here in this demo of the code: http://jsfiddle.net/jfriend00/9YQaV/

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

Sidebar

Related Questions

Hey guys I simply cannot get this to work. I have some content that
Hey guys I'm getting a syntax error on my CONCATS for some reason, this
Hey guys, i'm having some trouble with this: In the object consumer i need
Hey guys I need some help with this: I have two view controllers, let's
Hey guys, I'm trying to get threading to work in ASP.NET but for some
Hey Guys! Me again! Can someone provide me with some example code of how
hey guys having this really simple problem but cant seem to figure out have
Hey guys i'm making a website but for some reason my div tags are
Hey guys I have a simple create method with some validations and whenever the
Hey guys, I've been browsing around on SO for quite some time and can't

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.