salve io utilizzo questa jquery per un tooltip:
<script type="text/javascript">
$(document).ready(function() {
//Tooltips
$(".tip_trigger").hover(function(){
tip = $(this).find('.tip');
tip.show(); //Show tooltip
}, function() {
tip.hide(); //Hide tooltip
}).mousemove(function(e) {
var mousex = e.pageX + 20; //Get X coodrinates
var mousey = e.pageY + 20; //Get Y coordinates
var tipWidth = tip.width(); //Find width of tooltip
var tipHeight = tip.height(); //Find height of tooltip
//Distance of element from the right edge of viewport
var tipVisX = $(window).width() - (mousex + tipWidth);
//Distance of element from the bottom of viewport
var tipVisY = $(window).height() - (mousey + tipHeight);
if ( tipVisX < 20 ) { //If tooltip exceeds the X coordinate of viewport
mousex = e.pageX - tipWidth - 20;
} if ( tipVisY < 20 ) { //If tooltip exceeds the Y coordinate of viewport
mousey = e.pageY - tipHeight - 20;
}
tip.css({ top: mousey, left: mousex });
});
});
</script>
questo codice funziona benissimo sin tanto che non inserisco un div con position:relative che contiene i link.
Purtroppo io devo farlo obbligatoriamente avendo dei link in position:abosulte.
mi spiego meglio:
la mia pagina è questa:
<div id="content" style="background:#FFF;position:relative ">
<a href="#" class="tip_trigger">[img]cartina/5132.gif[/img]<span class="tip">H.I.S. EUROPE ITALY SRL
TOUR OPERATOR</span></a>
</div>
in pratica vorrei che la jquery considerasse le coordinate del mouse dal div "content" credo.
grazie