Yes! I was testing next() just as you replied. Thanks, it works. I can
now grab a group of ID elements (hid1, hid2, ...) and fire the toggle
on just the one that is clicked. Sweet.

        $('[EMAIL PROTECTED]').click(function()
        {
                $(this).next().toggle();
                return false;
        });

Reply via email to