Skip to content

Instantly share code, notes, and snippets.

@eguicciardi
Last active December 30, 2015 03:19
Show Gist options
  • Save eguicciardi/7769030 to your computer and use it in GitHub Desktop.
Save eguicciardi/7769030 to your computer and use it in GitHub Desktop.
Drupal.behaviors.makeMeSmelly = {
attach: function (context, settings) {
// Questo codice viene eseguito solo una volta
context.once(function() {
$('h1', this).addClass('.titolone');
}
// Questo invece viene eseguito ad ogni richiesta
$('h1').addClass('.titoloneone');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment