Reputation: 13
Hi I am working with magento at the moment and want to integrate a jquery slideshow with rounded corners using jquery. However I am having a problem using jquery with the others, even though I have wrapped my code in:
(function($) {
$(document).ready(function(){
// code here
});
})(jQuery);
You can find a link to my js file here.
I am calling jquery-latest from the jquery site/cdn, and the theme is default.
Upvotes: 0
Views: 182
Reputation: 37700
Although you have correctly wrapped your code in an anonymous function does your theme also call jQuery's noConflict for Prototype's sake?
Upvotes: 3