Generally you only need one version of jQuery per page, but it must come before all other scripts that use it. Working from the page http://www.dwwebdesigns.com/custom/cis.html as it currently is, moving:
Code:
<script type="text/javascript" src="/custom/js/jquery-1.8.3.min.js"></script>
to here:
Code:
<link rel="stylesheet" href="/custom/css/components.css">
<link rel="stylesheet" href="/custom/ciscss.css">
<link rel="stylesheet" href="/custom/owl-carousel/owl.carousel.css">
<link rel="stylesheet" href="/custom/owl-carousel/owl.theme.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="/custom/js/jquery-1.8.3.min.js"></script>
<!-- Slippry Start -->
<script src="/custom/js/slippry/slippry.min.js"></script>
<link rel="stylesheet" href="/custom/js/slippry/demo.css">
<link rel="stylesheet" href="/custom/js/slippry/slippry.css">
<!-- Slippry End -->
seems to do the trick as far as I can see. The differences between jQuery 1.10.2 and 1.8.3 are not all that great though, so putting either version of jQuery there should work for most scripts that need either version, though of course, whichever version of jQuery you decide to use should be the only version of jQuery used for the page. Generally that would be the later or higher version, in this case 1.10.2 (also seems to work), but I tried it with 1.11.1 and that seemed to work fine too.
Basic rule though is only one version of jQuery per page, and it must come before any other scripts that need it.
As far as the "waiting for" message in IE goes, there's a little trick that often works and seems to in this case, add the defer attribute to the scripts using jQuery:
Code:
<script type="text/javascript" src="/custom/js/jquery-1.8.3.min.js"></script>
<!-- Slippry Start -->
<script defer src="/custom/js/slippry/slippry.min.js"></script>
<link rel="stylesheet" href="/custom/js/slippry/demo.css">
<link rel="stylesheet" href="/custom/js/slippry/slippry.css">
<!-- Slippry End -->
<script defer type="text/javascript" src="/custom/js/jquery-ui.min.js"></script>
<script defer type="text/javascript" src="/custom/js/modernizr.js"></script>
<script defer type="text/javascript" src="/custom/js/responsee.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
BTW, the scripts in the lt IE 9 comment block appear not to exist, and - since almost no one uses IE 8 or less any longer, you can probably safely remove that part (highlighted).
Bookmarks