Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stevelippert/3fed3ceab675b5b43fa4 to your computer and use it in GitHub Desktop.
Save stevelippert/3fed3ceab675b5b43fa4 to your computer and use it in GitHub Desktop.
An example of good counting of a matching element on the page
function countFlaggedQs(){
var fgC = $(".q-flag").children(".icon-flag").length,
fgT = ' flagged questions';
fgT = (fgC === 1) ? ' flagged question' : ' flagged questions';
$("#q_fg").html( fgC+' <i class="icon-flag" title="'+fgC+fgT+'"></i>' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment