20
10
| |
add comment |
50
|
Wordpress uses jQuery in noConflict mode by default. You need to reference it using
jQuery as the variable name, not $ , e.g. use
instead of
You can easily wrap this up in a self executing function so that
$ refers to jQuery again (and avoids polluting the global namespace as well), e.g.
| ||||||||||||||||||||
|
3
|
http://api.jquery.com/jQuery.noConflict/ this url did wonders for me
that is, assuming you included jquery on your HTML
| ||
add comment |
Net
tab of Firebug (make sure jQuery actually gets loaded). – wsanville Nov 2 '11 at 2:14