Skip to content

Instantly share code, notes, and snippets.

@outsideris
Created October 1, 2011 05:21
Show Gist options
  • Save outsideris/1255641 to your computer and use it in GitHub Desktop.
Save outsideris/1255641 to your computer and use it in GitHub Desktop.
Dom loaded
// jquery
$(document).ready(function(){
});
// prototype.js
document.observe("dom:loaded", function() {
});
// vanilla javascript (it's not dom loaded)
window.onload = function() {
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment