i have a "imho" strange problem with the jquery getScript function.

$.getScript('jquery_ui.js', function (){});
// this code works fine

<script type="text/javascript" src="http://www.google.com/jsapi?autoload=%7B%22modules%22%3A%5B%7B%22name%22%3A%22feeds%22%2C%22version%22%3A%221%22%7D%5D%7D"></script>
// works fine,too

$.getScript('http://www.google.com/jsapi?autoload=%7B%22modules%22%3A%5B%7B%22name%22%3A%22feeds%22%2C%22version%22%3A%221%22%7D%5D%7D', function (){});
// This code redirect my page.
// But why, oO? This is the same like <script type="text/javascript" src="http://www.google.com/j ...

How can i fix this bug?

Thanks in advance
Peter

link|improve this question

My Browser (firefox) is loading, the hole time? – Peter Feb 27 '11 at 9:29
1  
Sorry, you're right, that (jsbin.com/aqoda3) behaves oddly for me on Firefox (Windows & Linux), Opera (Linux & Windows), and Safari (Windows) too. It works correctly in Chrome (Linux & Windows) and IE6/7/8. V. strange. – T.J. Crowder Feb 27 '11 at 10:08
feedback

5 Answers

up vote 0 down vote accepted
+50

Defining a callback value for each of the modules you are loading should solve the problem. (Note that the value of autoload in the querystring below contains the names of the modules you're loading and the names of your callbacks.)

function maps(){
  console.log("maps loaded");
}
function feeds(){
  console.log("feeds loaded");
}
$.getScript("https://www.google.com/jsapi?autoload=%7B%22modules%22%3A%5B%7B%22name%22%3A%22maps%22%2C%22version%22%3A%222%22%2C%22callback%22%3A%22maps%22%7D%2C%7B%22name%22%3A%22feeds%22%2C%22version%22%3A%221%22%2C%22callback%22%3A%22feeds%22%7D%5D%7D");
// https://www.google.com/jsapi?autoload={"modules":[{"name":"maps","version":"2","callback":"maps"},{"name":"feeds","version":"1","callback":"feeds"}]}
link|improve this answer
feedback

This is an issue with the Google API Loader. I've experienced this problem myself when using deferred loading of their javascript APIs. I was unable to find a solution to the problem and ultimately just used a conventional <script> tag.

I imagine that their javascript code is running this redirect (not sure if it's deliberate or not). You could always dig through their code to find out where the redirect is occurring. (sounds like a lot of wasted time)

Has anyone else had this issue, but found a way around it?

link|improve this answer
feedback

Give this a whirl here:

http://jsbin.com/ipaye4/5/edit

I've actually found using the full AJAX request works just fine, and the shorthand $.getScript doesn't always work. Let me know if you're able to replicate my success-- I'm on OS X using Chrome 8 Public

link|improve this answer
feedback
    jQuery.ajax({
        url: 'http://www.google.com/jsapi?autoload={%22modules%22%3A[{%22name%22%3A%22feeds%22%2C%22version%22%3A%221%22}]}',
        dataType: 'script',
        success: function () {
            alert('succeess');
        }
    });

i usually do this to load javascript files, i run above code on my browser and it worked fine.

Also i have created a demo http://jsfiddle.net/jDwYL/

link|improve this answer
feedback

this line means that u already included the file!!
why you need to load it in jquery

<script type="text/javascript" src="http://www.google.com/jsapi?autoload=%7B%22modules%22%3A%5B%7B%22name%22%3A%22feeds%22%2C%22version%22%3A%221%22%7D%5D%7D"></script>
link|improve this answer
i have a timeout on my page. I load the CSS/HTML/jquery.js code first and after 1 second i get all my js files ... like jquery_ui, js files from google etc. That makes the page rly fast. – Peter Feb 27 '11 at 9:28
Sorry i misunderstood your code , i thought you used all of them once sorry for that – Ahmed safan Feb 28 '11 at 17:52
feedback

Your Answer

 
or
required, but never shown

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