Skip to content

Instantly share code, notes, and snippets.

@marocchino
Created May 4, 2011 19:24
Show Gist options
  • Save marocchino/955828 to your computer and use it in GitHub Desktop.
Save marocchino/955828 to your computer and use it in GitHub Desktop.
// Bad no-caching
$('#some-element').css({ 'background-color': '#FF0000' });
$('#some-element').html("I turned red");
// Good caching
var some_element = $('#some-element');
some_element.css({ 'background-color': '#FF0000' });
some_element.html("I turned red");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment