Is jQuery CDN URL configured correctly?

Can anyone confirm the CDN src link for jQuery?

I am using the following:

 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"> </script> 
+3
jquery sharepoint
Oct. 19 '10 at 9:31
source share
3 answers

I used the following code:

 <script type="text/javascript" src="http://www.google.com/jsapi"></script> <script type="text/javascript"> google.load("jquery", "1.4.2"); google.setOnLoadCallback(function() { /--my code )}; 

His work for IE and Firefox

-one
Oct. 25 '10 at 9:52
source share

Yes, the URL and tag of the script are correct. By the way, jQuery 1.4.3 was recently released.

+2
Oct 25 '10 at 3:22
source share

The question is very vague, but it is related to a copy of jQuery hosted on SharePoint and CDN, so I’ll try to guess if the page using jQuery from Microsoft CDN is working incorrectly in Internet Explorer? If so, check out this question and consider using your own copy of jQuery (I had this problem and I could not find a solution).

+1
Oct 25 '10 at 7:21
source share



All Articles