var countRows = $('#tableID tr').length; 
alert(countRows)

or

var countRows = $('#tableID tr').size;
alert(countRows)

The selector takes all rows and then counts them.