Skip to content

Instantly share code, notes, and snippets.

@puginabox
Last active August 29, 2015 14:10
Show Gist options
  • Save puginabox/cd47007c70c582037d7d to your computer and use it in GitHub Desktop.
Save puginabox/cd47007c70c582037d7d to your computer and use it in GitHub Desktop.
Accessing Jquery within Drupal database nodes
<?php
drupal_add_js("
(function ($) {
// your cool moves in here…
})(jQuery);
// ','inline');
// ?>
", array('type'=>'inline', 'scope' => 'footer', 'weight' => 5)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment