Version compl�te: jsB@nk » Snippet » Comprend JavaScript
URL: https://www.javascriptbank.com/javascript-includes.html
Lorsque vous commencez à utiliser Prototype, Scriptaculous, et d'autres JavaScript bibliothèques, vous finissent souvent avec une douzaine de lignes de script en tirant toutes les balises du code provenant de différents endroits. Ce serait bien si vous n'avez jamais ajouté une nouvelle bibliothèque ou jamais échangé nécessaires pour mettre en œuvre. Cet JavaScript permettra de créer un seul JavaScript chargeur pour chaque projet qui contient tous les scripts nécessaires.
Version compl�te: jsB@nk » Snippet » Comprend JavaScript
URL: https://www.javascriptbank.com/javascript-includes.html
<script type="text/javascript">// Created by: J Wynia. | http://www.wynia.org/ */// Change the domain and path below to match where your scripts are kept.$js_path = "http://www.yourPath.com/js/";function js_include($script){ var script = document.createElement('script'); script.src = $js_path + $script; script.type = 'text/javascript'; var head = document.getElementsByTagName('head').item(0); head.appendChild(script);}// Enter the script files herejs_include("prototype.js");js_include("scriptaculous.js");</script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->