I am using JQuery UI and the example includes these header tags:
<!--JQuery UI-->
<link rel="stylesheet" href="http://code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script>
Does The first script tag use "jquery-1.12.4.js", but isn't the newest version of jQuery 2.2.4 or 3.0? Why doesn't JQuery UI use that? I already have alot of code running with V2.2.4 (that I included earlier) but when I include the second script I get conflicts and I dont want to use .noConflict and go back and replace all the "$" signs I used.
Does JQuery UI use an older version?