Skip to content

Instantly share code, notes, and snippets.

@Greg-Boggs
Created February 19, 2014 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Greg-Boggs/9098754 to your computer and use it in GitHub Desktop.
Save Greg-Boggs/9098754 to your computer and use it in GitHub Desktop.
Inline jquery in Drupal 7 dropped into a template.php
<?php
drupal_add_js('(function($) {$(document).ready(function() {
$("body").click(function() {
alert("Hello World");
});
});}(jQuery));', 'inline');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment