You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
465 B
18 lines
465 B
<!doctype html> |
|
<html> |
|
<head> |
|
<script src="assets/log.js"></script> |
|
<script src="assets/loadjs/loadjs.js"></script> |
|
<script> |
|
// load a file after window onload event fires |
|
window.addEventListener('load', function(ev) { |
|
loadjs('assets/file1.js', function() { |
|
log('file1.js loaded'); |
|
}); |
|
}); |
|
</script> |
|
</head> |
|
<body> |
|
<h1>Example: Load script after window onload event fires</h1> |
|
</body> |
|
</html>
|
|
|