Search code examples
javascriptjquerygoogle-apisame-origin-policy

Error on line 0. Google jquery api


Since yesterday I have a strange error on line 0 in "https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js" (Google jQuery Api). It just says "Script Error". I have researched about the error, but I just found something like this. I dont think Google forbid Same-origin policy access.

Can anyone tell me how I can fix this error?

I get this Error in Safari, Chrome and Firefox.

edit:

I monitor the error messages with the help of

window.onerror = function (text, file, line) {
}

Solution

  • It seems, that a Problem at the google Hosted jQuery File occured, which you examine with window.onerror. When you want to see a correct Error, download the Library and use a internal link to the Library:

    <script type="text/javascript" src="//your.site.com/jquery-2.1.1.min.js"></script>
    

    If this dont fix the Error, use the non-minified Version to determine the Error.