Reputation: 243
I have a div .div1
which is overflow :hidden
.
It contains a link of say user A
when someone hovers over it . A .seek
div is created and appended to parent div of link a
. I.e. .div1
using jquery.
Since .seek
is child of .div1
$(.div1).mouseleave(function{
seek.remove();
//removes seek div.
})
but as .div1
is overflow hidden some parts of .seek
gets hidden. How can i prevent this?
Seek is used to seek through user profiles without opening the whole page. A feature similar to google+.
Upvotes: 2
Views: 1746