I'm using foundation to build a basic site, but I'm stuck in a problem that's kind of weird... I don't seem to be able to load jQuery not in chrome nor in firefox (I tried no others).
What hints me that jQuery doesn't load is the error message :
Error: ReferenceError: $ is not defined
I'm calling the function foundation at the end of the template :
<script>
$(document).foundation();
</script>
but before that, right after the footer (before other .js) :
<script>
document.write('<script src="/js/vendor/'
+ ('__proto__' in {} ? 'zepto' : 'jquery')
+ '.js"><\/script>');
</script>
this is to call the jQuery or Zepto. But by fear this function might not be working (I'm no javascript expert...) I pluged :
<script src="http://code.jquery.com/jquery-latest.js"></script>
to the code and other variations... but nothing seems to work.
Furthermore, I also use Bootstrap in other project and I noticed that small details like tooltips and other stuff generally work, but not with the correct design. I'm not sure it's unrelated from jQuery...
I know it's kind of a weird assumption, but is it possible that my computer is not working properly with jQuery? I'm led to believe this because pieces of code I write in my computer don't work well here (like the bootstrap tooltips) but work well in my friend's computer.
The complete code that isn't working :
<!-- End Header and Nav -->
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<script>
document.write('<script src="/Foundation_custom/js/vendor/'
+ ('__proto__' in {} ? 'zepto' : 'jquery')
+ '.js"><\/script>');
</script>
-->
<!-- <script src="/Foundation_custom/js/foundation.min.js"></script>-->
<script src="/Foundation_custom/js/foundation/foundation.js"></script>
<script src="/Foundation_custom/js/foundation/foundation.alerts.js"></script>
<script src="/Foundation_custom/js/foundation/foundation.clearing.js"></script>
<script src="/Foundation_custom/js/foundation/foundation.cookie.js"></script>
<script src="/Foundation_custom/js/foundation/foundation.dropdown.js"></script>
<script src="/Foundation_custom/js/foundation/foundation.forms.js"></script>
<script src="/Foundation_custom/js/foundation/foundation.joyride.js"></script>
<script src="/Foundation_custom/js/foundation/foundation.magellan.js"></script>
<script src="/Foundation_custom/js/foundation/foundation.orbit.js"></script>
<script src="/Foundation_custom/js/foundation/foundation.placeholder.js"></script>
<script src="/Foundation_custom/js/foundation/foundation.reveal.js"></script>
<script src="/Foundation_custom/js/foundation/foundation.section.js"></script>
<script src="/Foundation_custom/js/foundation/foundation.tooltips.js"></script>
<script src="/Foundation_custom/js/foundation/foundation.topbar.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>