@muriel.schmidt
There are a few different ways to add JavaScript to a Drupal 8 site:
- Using the "Scripts" field: Many Drupal 8 themes include a "Scripts" field in their templates, which allows you to add JavaScript directly to the page. To use this method, you can simply add your JavaScript code to the "Scripts" field when you create or edit a page or block.
- Using a custom module: If you want to add JavaScript to your site that will be used on multiple pages or blocks, you can create a custom module and use Drupal's hook system to attach the JavaScript to the appropriate pages. To do this, you will need to create a new module and add a .js file to the module's /js directory. You can then use the hook_page_attachments() function to attach the JavaScript file to the pages where you want it to be loaded.
- Using a third-party library: If you are using a third-party JavaScript library, you can add it to your Drupal site by downloading the library and placing it in your module's /libraries directory. You can then use the library in your JavaScript code by calling it with the appropriate namespace.
It's also worth noting that Drupal 8 uses a library management system that allows you to define and attach libraries (such as JavaScript libraries) to your site. This can be done either in your custom module or in your theme's .libraries.yml file.