Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a part of css code, how can i add this css with jquery ?

div#menu li:hover>div {
    visibility: visible;
}
share|improve this question
1  
And start voting - 0 votes – James Wiseman Feb 18 '10 at 9:28

4 Answers

up vote 4 down vote accepted

Although Sarfraz and Anthony's answers would work there are a couple of points to note.

1) To hide/show you are better just using the hide() and show() mothods available on a jQuery object.

So,

$("div#menu li:hover>div").show();

2) Try to use css classes instead, rather than direct use of the .css() function

3) With your selector, div#menu is pointless. An id selector is faster. All you do when you put the element selector div in front of it is slow it down:

$("#menu li:hover>div").show();

Also, start accepting answers and voting. It good courtesy - It earns people points, which they like, and makes them more inclined to help you in future.

share|improve this answer

If I'm not mistaken, the following should work with the newest version of jquery:

 $("div#menu li:hover>div").css("visibility","visible")
share|improve this answer
it does not work for me – ulduz114 Feb 18 '10 at 9:03
1  
@ulduz114: With the latest version of jQuery? – T.J. Crowder Feb 18 '10 at 9:05
jquery version is 1.3 – ulduz114 Feb 18 '10 at 9:43

Please check this link http://remysharp.com/2008/10/17/jquery-really-visible/

The Problem with :visible

The :visible selector works fine if you're asking whether the particular element has been set to invisible (either via the display or visibility CSS style).

However, if the element is hidden because a parent element is set to hidden, the :visible selector returns a false positive.

share|improve this answer

........

 $('selector').css('visibility', 'visible')
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.