I have a list of items in my web application; each of them has a set of command buttons located under it.
To clear the interface, these buttons are displayed only when you hover over an item. The buttons are wrapped with a tag that has the following CSS attribute: visibility: hidden
This saves the layout so that the list items do not skip when the buttons are opened.
What I want to do is fade in / out buttons using jQuery. However, the default methods ( fadeIn(), fadeOut() ) seem to use display: none , which removes the buttons from the stream.
What I need is a way to fade them out or use them using the visibility attribute. So, before I start the search, does anyone know an obvious way to do this that I am missing?
Greetings
jquery css
Keith williams
source share