Fichiers JavaScript
Voici comment ajuster les fonctionnalités dynamiques de votre site web.
Customising JavaScript
To adjust your website even more you can use JavaScript. This allows you to create dynamic features for websites. You can save JavaScript into a file which has a similar name as the CSS file. Then it will be automatically included.
Here's an example file system/resources/custom.js
:
var ready = function() {
console.log("Hello world");
// Add more JavaScript code here
}
window.addEventListener("load", ready, false);