[jQuery] Re: Would some please tell me what's wrong with this syntax?

2009-02-14 Thread Rick Faircloth
? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Michael Geary Sent: Saturday, February 14, 2009 12:12 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Would some please tell me what's wrong with this syntax? Rick

[jQuery] Re: Would some please tell me what's wrong with this syntax?

2009-02-14 Thread Rick Faircloth
... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Ricardo Tomasi Sent: Friday, February 13, 2009 11:27 PM To: jQuery (English) Subject: [jQuery] Re: Would some please tell me what's wrong with this syntax? function

[jQuery] Re: Would some please tell me what's wrong with this syntax?

2009-02-13 Thread donb
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',

[jQuery] Re: Would some please tell me what's wrong with this syntax?

2009-02-13 Thread Josh Nathanson
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] Re: Would some please tell me what's wrong with this syntax?

2009-02-13 Thread Rick Faircloth
[mailto:jquery...@googlegroups.com] On Behalf Of donb Sent: Friday, February 13, 2009 7:49 PM To: jQuery (English) Subject: [jQuery] Re: Would some please tell me what's wrong with this syntax? The '()' around the 'click' function doesn't belong there. On Feb 13, 7:38 pm, Rick

[jQuery] Re: Would some please tell me what's wrong with this syntax?

2009-02-13 Thread James
every variation...what am I doing wrong? Thanks, Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of donb Sent: Friday, February 13, 2009 7:49 PM To: jQuery (English) Subject: [jQuery] Re: Would some please tell me what's

[jQuery] Re: Would some please tell me what's wrong with this syntax?

2009-02-13 Thread Rick Faircloth
: [jQuery] Re: Would some please tell me what's wrong with this syntax? I don't see the problem. Do you have more code than this somewhere that could be causing the error? On Feb 13, 3:16 pm, Rick Faircloth r...@whitestonemedia.com wrote: Thanks for the reply...the paren before the second

[jQuery] Re: Would some please tell me what's wrong with this syntax?

2009-02-13 Thread James
) Subject: [jQuery] Re: Would some please tell me what's wrong with this syntax? I don't see the problem. Do you have more code than this somewhere that could be causing the error? On Feb 13, 3:16 pm, Rick Faircloth r...@whitestonemedia.com wrote: Thanks for the reply...the paren before

[jQuery] Re: Would some please tell me what's wrong with this syntax?

2009-02-13 Thread Rick Faircloth
); } } }); } /script -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of James Sent: Friday, February 13, 2009 9:11 PM To: jQuery (English) Subject: [jQuery] Re: Would some please tell me what's wrong with this syntax

[jQuery] Re: Would some please tell me what's wrong with this syntax?

2009-02-13 Thread Ricardo Tomasi
...@googlegroups.com] On Behalf Of James Sent: Friday, February 13, 2009 9:11 PM To: jQuery (English) Subject: [jQuery] Re: Would some please tell me what's wrong with this syntax? The word 'function' is not suppose to be there. It's there only when you define a function, not when you

[jQuery] Re: Would some please tell me what's wrong with this syntax?

2009-02-13 Thread Michael Geary
- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of James Sent: Friday, February 13, 2009 9:11 PM To: jQuery (English) Subject: [jQuery] Re: Would some please tell me what's wrong with this syntax? The word 'function' is not suppose