My website doesn’t load jQuery [closed]

You made two mistakes:

  • You put the link to the jQuery library inside the type attribute, instead of the src
  • You are trying to load the scripts that make use of jQuery before jQuery itself

Try this

<script type="text/javascript" src="https://stackoverflow.com/questions/33256891/js/app/jQuery.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>

Leave a Comment