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?
