I wanted to play with the themeswitcher a little, so I made a simple page just to see how it worked before messing with it.
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/jquery-ui.min.js"></script>
<script type="text/css" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery.ui.all.css"></script>
<script type="text/javascript" src="http://jqueryui.com/themeroller/themeswitchertool/"></script>
<script>
$(document).ready(function(){
$('#switcher').themeswitcher();
$('#calendar').datepicker();
});
</script>
</head>
<body>
<div id="switcher"></div>
<input type="text" id="calendar"></input>
</body>
</html>
But after the page loads, I opened the developer tools panel in chrome and all the images that the script are supposed to load are throwing 403 forbidden errors. Which is weird because he switcher div worked the very first time I tried the page, but I made a typo on the datepicker id, so I reloaded the page after fixing it and then got 403 errors. So I want to get it working again, but it looks like it would be a pain to locally host all the theme resources and change the themeswitcher urls to reflect that; am I missing something?
Thanks
You are not allowed to hotlink to jQuery properties other than code.jquery.com. http://blog.jquery.com/2010/12/30/hotlinking-to-be-disabled-on-jan-31-2011/
you just need to download the code and images to your own server then modify the code to point to the images you downloaded on your own server.