Currently, I am using jQuery's .hide function to conceal an "extra details" div located within a parent div. When the user hovers over the parent div, it is designed to appear using .show/.toggle with jQuery UI slide effect.
However, I have encountered a problem: despite positioning the "extra details" div at the bottom of its parent using {position:absolute; bottom:0px;} and initially hiding it, when hovered in Chrome and Safari on OSX, the div slides out from the top and then abruptly jumps to the bottom once fully displayed.
In Firefox on OSX, this issue does not occur.
Furthermore, another issue arises if the mouse is rapidly moved back and forth over the element for approximately 5 seconds - it becomes disoriented and remains in the visible position even when not being hovered over.
I have created a jsfiddle http://jsfiddle.net/pWaMx/ showcasing these problems. Any insights into what might be causing these issues would be greatly appreciated.