[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