Skip to content

Instantly share code, notes, and snippets.

@dmpeters
Created July 10, 2013 18:01
Show Gist options
  • Save dmpeters/5968593 to your computer and use it in GitHub Desktop.
Save dmpeters/5968593 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
$(document).ready(function() {
var n = $("tbody>tr").length;
console.log(n);
$("#cts").text(n);
$(".filter").change(function () {
var r = $('tbody>tr:visible').length;
console.log(r);
})
.change();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment