| 7 system.api.php | hook_js_alter(&$javascript) |
| 8 system.api.php | hook_js_alter(&$javascript) |
Perform necessary alterations to the JavaScript before it is presented on the page.
Parameters
$javascript: An array of all JavaScript being presented on the page.
See also
Related topics
2 functions implement hook_js_alter()
1 invocation of hook_js_alter()
File
- core/
modules/ system/ system.api.php, line 304 - Hooks provided by Drupal core and the System module.
Code
function hook_js_alter(&$javascript) {
// Swap out jQuery to use an updated version of the library.
$javascript['core/misc/jquery.js']['data'] = drupal_get_path('module', 'jquery_update') . '/jquery.js';
}
Login or register to post comments