I'm looking for a good way to get cells X-Y position in a table. (do not confuse it with css-position, I am looking for X and Y coordinate in Cartesian coordinate system).

As we know, we can get particular cell in a table using ex: $('#grid')[0].rows[5].cells[7].

But, what if I want to get the value 5x7 when I click on particular cell, i.e:

$('#grid td').click(function(){
   alert("My position in table is: " + myPosition.X + "x" + myPosition.Y);
});

I guess, the easiest way is to add innerHTML, ID or CSS class to every cell (<td class="p-5x7"> etc.) when creating table in back end, then parse it, and return on click, but is there any way to get these coordinates based purely on DOM?

link|improve this question

feedback

1 Answer

up vote 11 down vote accepted

DOM Level 2 HTML cellIndex:

alert('My position in table is: '+this.cellIndex+'x'+this.parentNode.rowIndex);
link|improve this answer
Um... yeah... I deleted my answer because this answer is ridiculously better than mine. :-) 1+ – a432511 Nov 21 '09 at 13:43
thanks a lot! sounds so simple now – rochal Nov 21 '09 at 13:52
Just learned something new... thanks @bobince – Doug Neiner Nov 21 '09 at 17:34
feedback

Your Answer

 
or
required, but never shown

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