Why doesn't this jQuery code work?

    $(document).ready(function () {
        $('currentPage').click(function() {
          $('myaccount').slideDown('slow', function() {
            // Animation complete.
          });
        });
    });

<li><a class="currentPage">Home</a></li>
<li><a class="myaccount">My Account</a></li>

Anyone got any ideas? I don't.

link|improve this question
1  
Given that you've posted comments to the effect that both answers fail to work, it might be worth posting your (x)html mark-up. Since both answers should work, unless there's something else going on. – David Thomas Mar 2 '11 at 23:33
Yeah, I would've posted the CSS that the classes refer to, but at the time of posting, it didn't occur to me. – anon271334 Mar 2 '11 at 23:43
feedback

2 Answers

up vote 2 down vote accepted

We use dots to select classes: $('.class_name')

    $('.currentPage').click(function() {
      $('.myaccount').slideDown('slow', function() {
        // Animation complete.
      });
    });

In your version, it's looking for <currentPage> tag.

edit
An example.
It might seem 'not working' because myaccount link is already visible, so sliding it down won't change a thing. Thus, I've hidden it in the example above.

link|improve this answer
Thank you. I added dots, but it still doesn't work. It now looks like: $('.currentPage') and $('.myaccount') – anon271334 Mar 2 '11 at 23:26
@Lucifer I've added an example. – Nikita Rybak Mar 2 '11 at 23:30
yay! Thank you @Nikita, much appreciated. jQuery is great.. It looks so simple, but at the same time there's something about it that really confuses my brain :P – anon271334 Mar 2 '11 at 23:41
feedback

You're missing a . on your class selectors:

$('currentPage') should be $('.currentPage')

and

$('myaccount') should be $('.myaccount')

link|improve this answer
Thank you. I added dots, but it still doesn't work. It now looks like: $('.currentPage') and $('.myaccount') – anon271334 Mar 2 '11 at 23:26
feedback

Your Answer

 
or
required, but never shown