The '()' around the 'click' function doesn't belong there.

On Feb 13, 7:38 pm, "Rick Faircloth" <r...@whitestonemedia.com> wrote:
> I'm getting this error:
>
> "missing ) after argument list"
>      "return false;\n"
>
> from this code:
>
> $(document).ready(function() {
>
>      $('.cancel').livequery('click', (function() {
>
>           $(this).parent().parent().find('.select-div').hide();
>           $(this).parent().hide();
>           $(this).parent().parent().find('.last-name').fadeIn(500);
>           $(this).parent().parent().find('.first-name').fadeIn(500);
>           $(this).parent().parent().find('.change-div').fadeIn(500);
>
>      })
>      return false;
>      );
>
> });
>
> I've tried every variation I can think of and can't get rid of the error...
>
> Thanks,
>
> Rick

Reply via email to