I haven\'t found a good reference for declaring my own functions inside the
jquery.ready(function(){});
I want to declare them so they
I believe that you would be okay just declaring the function inside the ready() closure, but here you can be a bit more explicit about the local scoping:
jQuery.ready(function() { var myFunc = function() { // do some stuff here }; myFunc(); });