I have created a simple example of using Simon Tabor's "jquery-toggles" plugin (https://github.com/simontabor/jquery-toggles). And although it works, the graphics never show up. I confirmed the CSS and JS is loading fine, yet still no images. Can someone figure out why?
<html>
<head>
<link rel="stylesheet" href="/include/jquery-toggles-master/themes/toggles-light.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="/include/jquery-toggles-master/toggles.min.js"></script>
<script>
$(document).ready(function () {
$('.toggle').toggles();
});
</script>
</head>
<body>
<div class="toggle toggle-select" data-type="select"></div>
</body>
</html>