Skip to content Skip to sidebar Skip to footer

I Got Jquery Errors Randomly

I made website with jQuery and Javascript. I noticed that sometimes the JS file are not loading well. I got these errors in console Uncaught ReferenceError: jQuery is not defined

Solution 1:

As you have added async to you script tags. Yes it will not block rendering of your page but it is not guaranteed to download those script in the same order in which you have added in page.

So try after removing async from script tags.

Post a Comment for "I Got Jquery Errors Randomly"