Either change your selectors to use an ID: $('#expandable p')...
OR, change your div to use a class: <div class="expandable">... So, right now you have this: $('div.expandable p')... ... <div id="expandable">... But you need either this: $('div.expandable p')... ... <div class="expandable">... ...or this: $('#expandable p')... ... <div id="expandable">... - jason On Mar 23, 6:20 pm, aerojad <[EMAIL PROTECTED]> wrote: > I am attempting to play around with the jQuery Expander plugin > athttp://plugins.learningjquery.com/expander/index.html > > I copied and pasted the demo exactly as it was on the demo site, > uploaded everything correctly, but the plugin won't seem to work for > me. The page I'm working on > ishttp://secondpagemedia.com/jad/new_fp/expandable.html > > I would appreciate any help.