Could anyone confirm the 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>
link|improve this question

Your src url looks fine. There are three main CDNs for jQuery, found here: docs.jquery.com/Downloading_jQuery#CDN_Hosted_jQuery – Jarrod Dixon Oct 25 '10 at 0:06
Thanks you Marek – Hari Gillala Oct 25 '10 at 8:04
feedback

3 Answers

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

link|improve this answer
Okey. Thank you. I have sorted it. Many thanks.. – Hari Gillala Oct 25 '10 at 9:43
feedback

The question is very vague but it is related to SharePoint and CDN-hosted copy of jQuery, so I'll try to guess - does a page using jQuery from Microsoft CDN work incorrectly in Internet Explorer? If yes, check this question and consider using your own copy of jQuery (I had this problem and I found no solution).

link|improve this answer
1  
I have used the following code: <script type="text/javascript" src="google.com/jsapi"></script>; <script type="text/javascript"> google.load("jquery", "1.4.2"); google.setOnLoadCallback(function() { – Hari Gillala Oct 25 '10 at 9:50
feedback
up vote -1 down vote accepted

I have 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
)};

Its working for IE and Firefox

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.