-1

i have recently bought a template for a Betting site for CSGO, but now when i'm setting it up i get these weird errors, if you go to the site and go to console you can see exactly what i get. How can i fix these problems? site is : csgohulk.com like this one : main18.js:1 Uncaught ReferenceError: $ is not defined what is wrong ? and Uncaught ReferenceError: jQuery is not defined ?

i can give you more info if you want..,

I have not tried so much because i'm not so good at programming so i really need help

thanks //Wiz

TheWise
  • 1
  • 2

1 Answers1

1

The issue seems to be your jquery isn't loading from http://csgohulk.com/js/jquery-1.10.2.js

You are getting a 404 (not found) error.

You should first check that this file is even present on your server. If it isn't that is your problem. It could also be that the file is there but there are permission issues to access it.

Try replace <script src="/js/jquery-1.10.2.js"></script> in your html with <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">

See if that fixes it. (if it does then fix your file at /js/jquery-1.10.2.js on your server to be the same as the one here)

Then if there are other files that aren't loading then fix them too. Until there are no 404 errors displaying in the console of the browser.

JasoonS
  • 1,432
  • 3
  • 13
  • 26
  • there are many other js files that don't exist, see [the website](http://csgohulk.com/) – hsh Jun 15 '16 at 09:20
  • Yes, I saw now. He will have to go through each of them one by one and make sure each is available. – JasoonS Jun 15 '16 at 09:23