Skip to content

Instantly share code, notes, and snippets.

@shrutis22
Created January 15, 2016 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shrutis22/43480bd9312964979d22 to your computer and use it in GitHub Desktop.
Save shrutis22/43480bd9312964979d22 to your computer and use it in GitHub Desktop.
Incrementing Points - Brick Game
function points() {
inc = parseInt(jQuery("#points").html());
inc = inc + 1;
jQuery("#points").html(inc);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment