In using this cool onload function from JQuery
$(document).ready(function(){ // my stuff }
do I need to worry about overwriting anything else that may have called it?
In using this cool onload function from JQuery
$(document).ready(function(){ // my stuff }
do I need to worry about overwriting anything else that may have called it?
In jQuery, that function adds to the ready queue I believe, so you can write multiple ready() functions without worrying about overwriting previous ones (they just stack).