Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [Solved] jQuery Beginner Help

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #28652
    arjunvasudeva
    Participant

    Hey forum, i’m starting to learn some jQuery from Jeffrey Way’s screencasts.

    I don’t know what’s going wrong for me, on the 1st one! It’s kinda frustrating.

    Code:




    Click

    That’s what i’ve done, why isn’t it fading out?

    Thanks,

    Arjun

    #73639
    noahgelman
    Participant

    You have a little syntax error. You have:

    $function() {

    on your first line of script. It needs to be:

    $(function() {

    You were missing an opening parenthesis after the dollar sign. Jquery can be so finicky.

    #73643
    arjunvasudeva
    Participant

    Dude, you are epic.

    Thanks a bunch man i was getting frustrated as hell.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.