I am using jQuery, jQuery UI, and jQuery Mobile on a page
<script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<script type="text/javascript" src="//code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.js"></script>
When I call
$("#slider-range").slider({range: true, min: 0, max: 100});
It invokes jQuery Mobile Slider (not intended)
How do I explicitly call jQuery UI Slider?
(without changing the order of the included scripts because it will break other things)