L.s,
I would like to add an additional jquery script to my thematic child theme. Basically it enables a full screen background image. I wrote the script, tested it on static page. It works like a charm. Now how do I add it to thematic. I noticed the ../library/scripts/ directory but how are these scripts included within thematic.
So this is what I need to add:
<script src="js/bg.js"></script>
<script>
$(document).ready(function(){
$.bg("img/bg.jpg", {speed: 150});
});
</script>
I don't even know where to start looking. Whatever file I open it just has thematic hooks and filters. Where are the actual includes. Please help me out.
Gideon