emile
Version:
no-thrills stand-alone CSS animation JavaScript framework
19 lines • 515 B
HTML
<html lang="en-us">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>domReady test</title>
<script src="../src/ready.js"></script>
<script type="text/javascript">
domReady(function () {
document.getElementById('title').innerHTML = 'domready';
domReady(function () {
document.getElementById('title').innerHTML += '✓';
});
});
</script>
</head>
<body>
<h1 id="title"></h1>
</body>
</html>