You made two mistakes:
- You put the link to the jQuery library inside the
type
attribute, instead of thesrc
- 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>
1
solved My website doesn’t load jQuery [closed]