Here is the order of the includes:
index.html:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<script src="js/main.js"></script>
and here is the js file (Only relevant parts are shown):
$(document).ready(function () {
'use strict'
init();
$('.slider').slider({
orientation: isVertical,
range: reverseSlider,
max: maxVal,
min: minVal,
step: stepVal,
value: 10,
animate: 1300,
});
});
init() is just grabbing some values to create the slider. Everything works fine in the browser.
The error is "Uncaught ReferenceError: jQuery is not defined" and it points to the $ symbol in the first line of the javascript file. I've tried to replace "$" with "jQuery" but got the same error.
Any sugestions?