You don't need that open parenthesis after 'click':

$('.cancel').livequery('click', function() {
...etc.

-- Josh


-----Original Message-----
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of Rick Faircloth
Sent: Friday, February 13, 2009 4:38 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Would some please tell me what's wrong with this syntax?


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