Skip to content

Instantly share code, notes, and snippets.

@driesdelaey
Created September 26, 2012 14:50
Show Gist options
  • Save driesdelaey/3788487 to your computer and use it in GitHub Desktop.
Save driesdelaey/3788487 to your computer and use it in GitHub Desktop.
update jquery for frontend only
/**
* UPDATE JQUERY FOR FRONTEND ONLY
*/
function MYTHEME_js_alter(&$javascript) {
// Swap out jQuery to use an updated version of the library.
$javascript['misc/jquery.js']['data'] = drupal_get_path('theme', 'MYTHEME').'/js/jquery-1.7.2.min.js';
}
@driesdelaey
Copy link
Author

edit: added drupal_get_path; otherwise you get errors when compressing JS files

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment