i want hover over an image -> which is in an link
during i'm over the image should popup (like a tooltip) an div, which i can fill also with some stuff - any idea?!
$this is the link which includes an img: i found the image within and wanted to span a div above the image and make some jquery effects which lets the user get the info, that clicking the image wil enlarge it
$(this).parent().append($("<div/>")
.css({ "display" : "block", "left" : img.x, "top" : img.y,
"width" : img.width, "heigth" : img.heigth, "border" : "1px solid red"})
.text("Click me!")
does not work :-/