function hook_js_alter
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Render/theme.api.php \hook_js_alter()
- 8.9.x core/lib/Drupal/Core/Render/theme.api.php \hook_js_alter()
- 10 core/lib/Drupal/Core/Render/theme.api.php \hook_js_alter()
- 11.x core/lib/Drupal/Core/Render/theme.api.php \hook_js_alter()
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
5 functions implement hook_js_alter()
Note: the procedural functions in this list are found by pattern matching, so the list may include some functions that are not actually implementations of this hook.
- Ckeditor5Hooks::jsAlter in core/
modules/ ckeditor5/ src/ Hook/ Ckeditor5Hooks.php - Implements hook_js_alter().
- CommonTestThemeHooks::jsAlter in core/
modules/ system/ tests/ modules/ common_test/ src/ Hook/ CommonTestThemeHooks.php - Implements hook_js_alter().
- LocaleHooks::jsAlter in core/
modules/ locale/ src/ Hook/ LocaleHooks.php - Implements hook_js_alter().
- locale_js_alter in modules/
locale/ locale.module - Implements hook_js_alter().
- simpletest_js_alter in modules/
simpletest/ simpletest.module - Implements hook_js_alter().
2 invocations of hook_js_alter()
- ajax_render in includes/
ajax.inc - Renders a commands array into JSON.
- drupal_get_js in includes/
common.inc - Returns a themed presentation of all JavaScript code for the current page.
File
-
modules/
system/ system.api.php, line 746
Code
function hook_js_alter(&$javascript) {
// Swap out jQuery to use an updated version of the library.
$javascript['misc/jquery.js']['data'] = drupal_get_path('module', 'jquery_update') . '/jquery.js';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.