tags:

views:

45

answers:

3

I have this feature(netwaver.com/projects/featured-content-gallery-pligg-module/) on my site but it is not working well with jQuery plugin. I was researching and reading online and it says it to change the "$". Could some please assist me with this?

But the "$" symbol is inside like: {$featurify}..how would that work? All the example I see is showing the $ symbol outside

+1  A: 

They likely mean to enable jQuery's no conflict mode.

ceejayoz
+1  A: 

The naming collision is because $ is a shortcut for jQuery. You need to call:

jQuery.noConflict();

Then, once you do that, you need to assure you're calling jQuery without using the "$"

Many more options and discussion here: http://docs.jquery.com/Using_jQuery_with_Other_Libraries.

artlung
A: 
var j = $.noConflict();

Add jQuery library to load after the library causing the conflict. Then run this code. jQuery should be accessible through j now, like:

j('.class').test();
Dmitri Farkov