Skip to content

Instantly share code, notes, and snippets.

@pmatsinopoulos
Created March 28, 2015 07:08
Show Gist options
  • Save pmatsinopoulos/73d96b5bcdf1cfd7a795 to your computer and use it in GitHub Desktop.
Save pmatsinopoulos/73d96b5bcdf1cfd7a795 to your computer and use it in GitHub Desktop.
Using variables for jQuery
var $char_count = $("#char-count");
$char_count.html(charCount);
if (charCount > 50) {
$char_count.css("color", "red");
}
else {
$char_count.css("color", "#fff");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment