Skip to content

Instantly share code, notes, and snippets.

@mohamedrez
Created August 12, 2015 09:52
Show Gist options
  • Save mohamedrez/2b9f31128c270e12c46d to your computer and use it in GitHub Desktop.
Save mohamedrez/2b9f31128c270e12c46d to your computer and use it in GitHub Desktop.
drupal 7 custom javascript js
/**
* @file
* main.js
*
* Provides general enhancements and js functionalities.
*/
var Drupal = Drupal || {};
(function ($,Drupal) {
Drupal.behaviors.exampleModule = {
attach: function (context, settings) {
$('.example', context).click(function () {
$(this).next('ul').toggle('show');
});
}
};
})(jQuery,Drupal);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment