Skip to content

Instantly share code, notes, and snippets.

@bennybennet
Created March 8, 2013 12:54
Show Gist options
  • Save bennybennet/5116307 to your computer and use it in GitHub Desktop.
Save bennybennet/5116307 to your computer and use it in GitHub Desktop.
// !--- Caching
$(selector).each(function( index ) {
var $el = $(this);
// 2-3 DOM-Manipulationen an dem Element
// mit Benutzung von $el, z.B. $el.width()
});
// !--- kein Caching
$(selector).each(function( index ) {
// 2-3 DOM-Manipulationen an dem Element
// mit Benutzung von $(this), z.B. $(this).width()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment