up vote 3 down vote favorite
share [g+] share [fb]

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?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

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|improve this answer
perfect, thanks! – Yar Aug 6 '09 at 16:24
feedback

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

link|improve this answer
awesome, thank you. – Yar Aug 6 '09 at 16:24
feedback

Your Answer

 
or
required, but never shown

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