Magento add Js Script
Method 1. Adding to layout file
<reference name="head"> <action method="addJs"><script>skin/frontend/base/default/js/yourextension/index/scriptname.js</script></action> </reference> |
Method 2. Adding to phtml file
<?php echo $this->helper('core/js')->includeSkinScript('js/yourextension/index/scriptname.js') ?> |