I included yepnope.js and then the following:
<script type="text/javascript">
/*<![CDATA[*/
yepnope([{
load: 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js',
complete: function () {
if (!window.jQuery) {
yepnope('local/jquery.min.js');
} ...
However, while jquery is loading from the cdn, the following script at the end of the page is showing an error:
/*<![CDATA[*/
jQuery(function($) {
jQuery('#Project_projectDateStart').datepicker({'dateFormat...
the error is jQuery is not defined
I have no option but to load the script at the end (loaded with Yii datepicker in this instance).
Any help much appreciated.