1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/test/ecmascript/ready.html

20 lines
338 B
HTML
Raw Normal View History

<html>
<head>
<!--<script src="jquery.js"></script>-->
</head>
<body>
<div id="test">A</div>
<script>
function ff()
{
document.removeEventListener("DOMContentLoaded", ff);
2024-06-06 15:30:06 -04:00
alert(document.readyState);
}
document.addEventListener("DOMContentLoaded", ff);
//$(document).ready(function(){
// alert('READY');
//});
</script>
</body>
</html>