Get row count of jQuery Grid
Get jqGrid total row count<script>
var rowCount = $('#gridName').getGridParam('reccount');
console.log(rowCount);</script>
For older versions of jqGrid this should work
<script>
var rowCount = jQuery("#gridName").jqGrid('getGridParam', 'records');
alert(rowCount);
</script>