vote up 2 vote down star

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?

flag

61% accept rate

2 Answers

vote up 6 vote down

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).

link|flag
perfect, thanks! – yar Aug 6 at 16:24
vote up 1 vote down

$(document).ready is an event, so as many subscribers as you want can wire up to it.

link|flag
awesome, thank you. – yar Aug 6 at 16:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.