I can link to the CDN on the jQuery-ui site (the "official jQuery CDN") but I can't link to Google's . Why? -
my jquery-ui code executes when link media temple's procdn - 1 provided on jquery - ui site :
<script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
when try linking google hosted version however, takes longer load , jquery code not implemented on web page :
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
i don't know why i'm not able go google route.
your google links don't have "http://" - if you're using locally try load "file://ajax.googleapis.com"
just add http:// beginning.
Comments
Post a Comment