vote up 0 vote down star

Hello.

I want to find the name or ID of a element where I got top and left position.

I know how to use jquery to find the position of an element (Hovering over the div will trigger that position text will appear on screen):

    $(".item").hover(function () {
      var eleoffset = $(this).offset();
      $("#mouse").text("Mouse - Top: " + eleoffset.top + " - Left: " + eleoffset.left);
    });


<div class="item">This is a text block</div>
<div id="mouse">Waiting for position data...</div>
flag

78% accept rate

3 Answers

vote up 3 vote down check

I'm not quote sure what you mean. But you can get the name or ID using:

 $(this).attr('id');
 $(this).attr('name');

in the hover handler

link|flag
That works :) Thanks! – Cudos May 12 at 14:04
Smart. Last time I checked MDC they have some methods that can identify the objects based on the position on the window. – rymn May 12 at 16:07
vote up 0 vote down

this.id and this.name ought to work as well. Shouldn't need the extra JQuery call.

link|flag
vote up 1 vote down
      $("#mouse").text("Mouse - Top: " + eleoffset.top + " - Left: " + eleoffset.left + " id " + $(this).id);

I think

link|flag

Your Answer

Get an OpenID
or

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