Bueno... leyendo un poco (al menos en la version 1.6.2)
con el evento Hover, podemos aplicar dos eventos a objetos [eventObject] de manera de entrada y salida [handlerIn, handlerOut]
y asi solucione mi problema, dejo ejemplo y sintaxis.
SINTAXIS:
Código Javascript
:
Ver original$(element).hover(functionIn() {}, functionOut() {})
EJEMPLO:
jquery
Código Javascript
:
Ver original$(document).ready(function() {
$("p").hover(function() {
$(this).next().show(500);
}, function() {
$(this).next().hide(500);
});
});
HTML/CSS:
Código HTML:
Ver originalp {background:black}
article {background:red; width:100px; height:100px; display:none;}
Saludos !!