Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using David Desandros Isotope for a new site, but now it seems I'm unable to find each elements position using jquery. Specifically I'm trying to attach a tooltip on hover, but generally I'd like to know how to get the position() of each anchor after Isotope has formatted them.

As of now each element displays a '0' for left, margin-left, position().left, and every other positioning property I could think of.

share|improve this question

2 Answers

up vote 6 down vote accepted

See Isotope docs for itemPositionDataEnabled

$('#container').isotope({
  itemSelector: '.element',
  itemPositionDataEnabled: true
})
// log position of each item
.find('.element').each(function(){
  var position = $(this).data('isotope-item-position');
  console.log('item position is x: ' + position.x + ', y: ' + position.y  );
});
share|improve this answer
1  
+1, trust the maker, I should have RTFM ;) – jackrugile Jun 6 '11 at 17:23
A bastion of knowledge, thanks for clearing this up and creating such a great tool. – Steve Kelly Jun 6 '11 at 18:12

Hey, after viewing the the source code in one of Isotope's demos in Firebug, I found that the position is being calculated via:

-moz-transform: translate(#px, #px)

and

-webkit-transform: translate(#px, #px)

I am not sure what is being used for other browsers such as IE, but you should be able to access their position that way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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