Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I bet this has a simple answer.

I want to count the number of TD elements inside a row, yet i can't seem to find the right syntax.

var row = $('#album_cell'+currentCell).parent();
var n = $("td",row).length();

This returns an error obviously as i don't know how to specify that. Any help?

share|improve this question

5 Answers

up vote 0 down vote accepted
var row = $('#album_cell'+currentCell).parent();
var childrenCount = row.children('td').length;
share|improve this answer

You could use this syntax :

$( "#table > td" ).size()
share|improve this answer

Try this instead

var row = $('#album_cell'+currentCell).parent().find("td").length;

Or Alternately

var row = $('#album_cell'+currentCell).parent().find("td").size();
share|improve this answer

You can try this:-

   $("#table > td").length
share|improve this answer

Just simply use:

$('#yourtableid td').length

Demo: http://jsfiddle.net/LU7Hh/1

share|improve this answer
Ya i couldn't just do that in my case – eric.itzhak Oct 22 '12 at 0:45

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.