Is it permissable to have more than one
$(document).ready(function() {})
per page?
If it is not, would this be a good workaround?
$(document).ready(function() {
runGlobalJQueryFunctions();
runLocalJQueryFunctions();
return false;
});
The reason is that one group is managing a global header and another group is managing the content on the page. Thanks. :)
Glen
_______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
