, "" - HTML, . HTML JavaScript script, . ? script ?
, , : JavaScript?
:
, JavaScript , - , , JavaScript , , , .
, , , jQuery, .getScript() .ajax(). , , http://www.electrictoolbox.com/jquery-dynamically-load-javascript-file/.
, , , html-, , html script script, . , script jQuery , .
(function () {
if (typeof(jQuery) == "undefined") {
var headID = document.getElementsByTagName("head")[0];
var newScript = document.createElement('script');
newScript.type = 'text/javascript';
newScript.id = 'myjQuery';
newScript.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js';
headID.appendChild(newScript);
}
window.addEventListener('load', function (e) {
}, false);
})();