How can I implement my own $(document).ready functionality without using jQuery? Technology Community › Category: jQuery › How can I implement my own $(document).ready functionality without using jQuery? 0 Vote Up Vote Down VietMX Staff asked 4 years ago There is a standards based replacement, DOMContentLoaded that is supported by over 98% of browsers, though not IE8: document.addEventListener("DOMContentLoaded", function(event) { //do work });