mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
20 lines
338 B
HTML
20 lines
338 B
HTML
<html>
|
|
<head>
|
|
<!--<script src="jquery.js"></script>-->
|
|
</head>
|
|
<body>
|
|
<div id="test">A</div>
|
|
<script>
|
|
function ff()
|
|
{
|
|
document.removeEventListener("DOMContentLoaded", ff);
|
|
alert(document.readyState);
|
|
}
|
|
document.addEventListener("DOMContentLoaded", ff);
|
|
//$(document).ready(function(){
|
|
// alert('READY');
|
|
//});
|
|
</script>
|
|
</body>
|
|
</html>
|