Documentation can be found on the jQuery site via the Documentation link up the top:
http://docs.jquery.com/Main_Page As to the "on page ready" event you're refering too: $(document).ready(function(){ // Your code here }); (From http://docs.jquery.com/How_jQuery_Works ) You may not see that in the Superfish code because there is a commonly used "shortcut" that looks like this: $(function(){ // Your code here }); Karl Rudd On Dec 6, 2007 2:01 PM, jrd <[EMAIL PROTECTED]> wrote: > > Hello, > > This is kind of a general question, but I'm hoping it's not too simple > to answer. > > To speed up my entire page loading time, I'd like to replace a > standard "onLoad" call in an existing Javascript in the page (the > script loads a Google Ajax news feed display) with the same jQuery > call that is used to load the Superfish menus. I haven't been able to > figure out exactly what I want to use for the jQuery call by parsing > through the Superfish script. Is there documentation somewhere of this > call that would be simple enough for a jQuery newbie to understand? > > Thanks, > > Jennifer > (Feeling rather blonde) > >