I want to use a local version of jQuery on my socket.io app which runs on port 8000
when I try to link it I get 404. I tried all the below:
<script src=" js/vendor/jquery-1.8.3.min.js"></script>
<script src=" http://localhost/js/vendor/jquery-1.8.3.min.js"></script>
<script src=" http://localhost:8000/js/vendor/jquery-1.8.3.min.js"></script>
I don’t want to use google CDN. How do I link it?
It should look something like
And place your jquery file in your app/js/vendor directory 😉