How can I include a JQuery script to every CMS page within a theme.
Placing the .js file in:
app/design/frontend/<company>/<theme>/web/js/file.js
and using script tags(below) in the CMS page doesnt work.
<script src="js/file.js">
Put this code in the local.xml in your theme folder:
<cms_page>
<reference name="head">
<action method="addJs"><script>path/to/my/file.js</script></action>
</reference>
</cms_page>