> Is it permissable to have more than one
> $(document).ready(function() {})
> per page?
Yes, as many as you want. They will be called in the same order that the
$(document).ready() calls were made.
Note that there is a handy shortcut for $(document).ready():
$( function(){} );
-Mike
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
