Quantcast
Channel: Adding jQuery to Magento - Stack Overflow
Viewing all articles
Browse latest Browse all 5

Answer by Kenny for Adding jQuery to Magento

$
0
0

Best is to use the content delivery network which will be better in performance/speed for your website.

I mostly just open up template/page/html/head.phtml and right before

<?php echo $this->getCssJsHtml() ?>
<?php echo $this->getChildHtml() ?>

I add:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>

Also make sure you run the jQuery.noConflict() method and always use the full jQuery name instead of the $ (dollar sign) to avoid conflicts with prototype ;)


Viewing all articles
Browse latest Browse all 5

Trending Articles