I'd like to use JQuery in the development, but to save traffic I'd like to use Google APIs (http://code.google.com/apis/ajaxlibs/) instead of serving JQuery files locally. How can I register and use all JQuery-dependent widgets, but not serve jquery.js file locally?
In this case there’s no url to google’s jquery file. Instead, there’s url to google’s loader, which requires a separate step - add a javascript call:
google.load("jquery", "1");
So I can't just override renderCoreScript. I'll need to manually add the code above to my web pages, so the whole solution becomes quite messy because there's no clear link anymore between overridden renderCoreScript and google.load call.