Skip to content

Instantly share code, notes, and snippets.

@knibals
Created October 23, 2012 13:00
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 knibals/3938599 to your computer and use it in GitHub Desktop.
Save knibals/3938599 to your computer and use it in GitHub Desktop.
Retrieve jQuery from CDN (hook_js_alter)
/**
* Implements hook_js_alter().
*/
function YOUR_THEME_js_alter(&$js) {
if (isset($js['misc/jquery.js'])) {
$jquery_path = 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js';
$js['misc/jquery.js']['data'] = $jquery_path;
$js['misc/jquery.js']['version'] = '1.8.0';
$js['misc/jquery.js']['type'] = 'external';
}
}
// from http://kahthong.com/2011/12/use-cdn-jquery-your-drupal-theme
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment