only.js
Version:
Automatically load and execute selector-based dependencies
67 lines (54 loc) • 1.82 kB
HTML
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Only.js tests (Only.js with dependency test)</title>
<script src="../src/Only.js"></script>
<!-- testing conditional dependency loading -->
<script>
var timeDiff = function(){
var d, time;
return {
setStartTime:function (){
d = new Date();
time = d.getTime();
},
getDiff:function (){
d = new Date();
return (d.getTime()-time);
}
};
}();
function done() {
var log_value_text = "Loading/Execution Time: "+timeDiff.getDiff()+"\n";
(function fn(){
var load_log = document.getElementById("load_log");
if (load_log !== null) load_log.value += log_value_text;
else setTimeout(fn,10);
})();
}
timeDiff.setStartTime();
$O.ready(function () {
$O
.test('form')
.js("test-2-form-plugin.js")
.wait(done);
$O
.test('.textarea')// should not load, no such element exists on page
.js("test-1-data-attribute.js")
.wait(done);
});
</script>
</head>
<body>
<h1>Only.js tests (Only.js with dependency test)</h1>
<img src="img1.jpg" width="100" hspace="5" alt="image 1" title="size: 379kb" />
<img src="img2.jpg" width="100" hspace="5" alt="image 2" title="size: 20kb" />
<br />
<form name="log_form">
<label>
<textarea id="load_log" name="load_log" cols="80" rows="10"></textarea>
</label>
</form>
</body>
</html>