In Yii, currently all the dependancies for jquery are loading up a local version of jquery, which i believe is 1.6.*, un-minified.
Something along the lines of:
<script src="/assets/2343/js/jquery.js"></script>
I would like to update the core jquery dependancy to use the jquery 1.7.* from google
Basically I would like to include
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
at the bottom of all my pages whenever jquery is a dependancy.
There’s also another method seen in yii’s docs: