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?
|
|
|
@OneNerd is right in his answer that it just adds to the ready queue. The
|
|||
|
|
|
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). |
|||
|
|
|
$(document).ready is an event, so as many subscribers as you want can wire up to it. |
|||
|
|