Ok, I had a think, and this is the best I can come up with.
Put all your Javascript in an external .
js file, then link to it in your
HTML in the <head> like so:
- Code: Select all
<script type="text/javascript" src="http://www.bookfest.ca/path/to/script.js"></script>
That way,
every page is using the
exact same javascript, and it'll be easier to deduce the problem (if it still exists).
Plus, you'll get neater lighter markup and it'll be easier to mod your Javascript in the future!