I've picked up an existing project from another developer and ive noticed in the code that they are executing js code within three different event handlers...
function pageLoad() {
//execute code
}
$(document).ready(function() {
//execute code
});
$(function() {
//execute code
});
My question is - arent they all exactly the same? Or at least the last two? I understand that pageLoad is called by the .NET framework so it's not dependent on the jQuery library having loaded like the second two are - that's my understanding anyway - is that about correct?
pageLoadand the jQuery ready handler, I found the following article; encosia.com/document-ready-and-pageload-are-not-the-same – Matt Oct 19 '11 at 15:48DOMContentLoadedevent (DOM-ready), the 1. function is just a declaration. – Šime Vidas Oct 19 '11 at 15:49