In this fiddle..
When I try to Insert a DIV on hover the below content is moved down to give the space for newly inserted DIV. And why the newly inserted DIV is removed when I hover off from the #a DIV.
In this fiddle.. When I try to Insert a DIV on hover the below
Share
You should use
position: absoluteas in http://jsfiddle.net/jfSGW/6/That
divis correctly removed because you dictated it in the second parameter to$.hover()If you want popup div to be ultimately removed, but stick around while you hover over it, you can do something like this: http://jsfiddle.net/jfSGW/13/