<!DOCTYPE html>
<html>
<head>
<title>ScriptLoader Demo 1</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="../resourceloader.js"></script>
<script>
window.resourceLoader.load("dummies/script1.js", {cache: true, cacheTimeout: 10, complete: function(options) {
alert('Loaded this script: '+options.src);
}});
console.log(window.resourceLoader.getVersion());
</script>
</head>
<body>
<div></div>
</body>
</html>
|