on ready javascript code example
Example 1: jquery document ready
$(document).ready(function() {
});
Example 2: dom ready js
document.addEventListener("DOMContentLoaded", function() {
});
Example 3: document ready without jquery
document.addEventListener("DOMContentLoaded", function(event) {
});
Example 4: jquery document ready
The .ready() method is typically used with an anonymous function:
$( document ).ready(function() {
});
Which is equivalent to the recommended way of calling:
$(function() {
});
Example 5: js dom ready function
<!doctype html>
<html>
<head>
</head>
<body>
Your HTML here
<script>
(function() {
})();
</script>
</body>
</html>