I have the following code
$.get('getstatsAccepted' + tickerid, {tickerid: tickerid}, function(data) {
alert(data.length);
}, 'json');
I want to alert the count of rows returned through this method. How to do this?