I have tried to test a static website with JS libs like JQuery on a GitHub Pages However, it seems that the JS (main site carousel or photo carousel) is not working on GitHub Pages.
The same code locally and on localhost temporary apache work excelent.
JQuery as an example:
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
document.write(unescape("%3Cscript src='/javascripts/jquery.min.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
What seems to be the problem?
