Uncaught ReferenceError: jQuery is not defined [duplicate]

jQuery needs to be the first script you import. The first script on your page

<script type="text/javascript" src="https://stackoverflow.com/test/wp-content/themes/child/script/jquery.jcarousel.min.js"></script>

appears to be a jQuery plugin, which is likely generating an error since jQuery hasn’t been loaded on the page yet.

Leave a Comment