Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save tmsss/6256477 to your computer and use it in GitHub Desktop.

Select an option

Save tmsss/6256477 to your computer and use it in GitHub Desktop.
Drupal preprocess function for use a more recent version of jQuery in Drupal (without jQuery Update) (http://chipcullen.com/how-to-use-a-more-recent-version-of-jquery-in-drupal)
function THEMENAME_js_alter(&$javascript) {
$javascript['misc/jquery.js']['data'] = drupal_get_path('theme', 'THEMENAME') .
'/javascripts/jquery-1.7.2.min.js';
$javascript['misc/jquery.js']['version'] = '1.7.2';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment