Renaud wrote:
$(document).ready(function() { myload(); });

In such a situation, when already having a perfect function reference you don't need another anonymous function...:

$(document).ready(myload);

or with the shorthand:

$(myload);


--Klaus

Reply via email to