vote up 0 vote down star
1

When hovering over a span I would like to get the offsetLeft and offsetTop values so I can make something hover near it. When I do this I get 0 for both values.

What is a better way to tackle this? I am using jQuery.

Assume I am starting with (looped by server-side scripting):

<span onmouseover="hoverNearMe(this.offsetLeft,this.offsetTop);">some username</span><br />

FINAL THOUGHTS:
I'm giving the the answer rep out based on "code leverage"/DRY. The longer function you could use over and over in your own js library. The second short answer however is 100% correct too.

Thanks.

flag

68% accept rate

3 Answers

vote up 2 vote down check

I think you should be able to do this:

HTML

<span class="get-close-to">some username</span><br />

jQuery

jQuery('.get-close-to').hover(function() {
    var offset = jQuery(this).css('offset');
    alert( 'Left: ' + offset.left + '\nTop: ' + offset.top );
});
link|flag
does this handle the whole "cumulative" offset thing? – tyndall Feb 10 at 22:35
+1 for creativity. – tyndall Feb 10 at 22:41
@Bruno - I think it should. It gets the offset relative to the document. – nickohrn Feb 10 at 23:10
vote up 6 vote down

$(this).offset().left and $(this).offset().top

link|flag
vote up 0 vote down

Why do you need server-side scripting?

try this:

	var positionImg = function(e) {
		$(this).offset();
	var zoomCntnrPos = $(this).offset.top;
	  if (zoomCntnrPos >= maxBottomVPos)
	  {
		   tPosX = e.pageX;
	       tPosY = e.pageY +20;
		  }
	  else if (zoomCntnrPos <= maxTopVPos){
      	   tPosX = e.pageX;
	       tPosY = e.pageY +40;
		  }
	  else
		  {
		   tPosX = e.pageX;
	       tPosY = e.pageY -100;  
		  }
		$zoomContainer.css({top: tPosY, left: tPosX});
	};
link|flag
So you never use server-side? PHP even? Can you explain your code? seems a little bloated. – tyndall Jul 7 at 18:00
this is just part of the code. here you are positioning the hover via javaScript and position via the mousemove event event.pageX and event.pageY. – adardesign Jul 8 at 13:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.