I'm setting up a wordpress site in MAMP installed on windows and the .JS scripts put it in the footer:
<?php wp_footer(); ?>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js"integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh"
crossorigin="anonymous"></script>
<script type="text/javascript" src="assets/js/efeitos.js">
</script>
</body>
Hence it does not work and on the console it recognizes as "GET link net :: ERR_ABORTED"
In the other sites that I have done, it always worked, putting the directory only from the assets folder, but now it did not work.
What can it be?