Magento 1.9 – Resolve jQuery Conflict Issue

javascriptjquerymagento-1.9PHP

i have added custom slider with for products. I added Jquery files. When I add jQuery files in XML then slider working but Add to Cart Button not working. When I remove jQuery files then, Slider obviously not working but Add to Cart button working Properly. Please Guide me I'm sharing link of my site:

t1.mygarden.pk

Best Answer

Rather than using $ to show your slideshow...do the following

jQuery(document).ready(function($){
             jQuery('#target').slideshow();
        });
Related Topic