[jQuery] Re: Ok, I give... where does the ; go in this code?

2007-12-15 Thread Rick Faircloth
, 2007 9:36 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Ok, I give... where does the ; go in this code? There's a typo in the spelling of function, so maybe the error message that you're getting is misleading ? e.g. if funtion was a variable, you wouldn't have brackets after

[jQuery] Re: Ok, I give... where does the ; go in this code?

2007-12-15 Thread Rick Faircloth
a charm! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick Faircloth Sent: Saturday, December 15, 2007 10:48 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Ok, I give... where does the ; go in this code? Hi, Liam

[jQuery] Re: Ok, I give... where does the ; go in this code?

2007-12-14 Thread Aaron Heimlich
script type=text/javascript window.onload = function() { $(.image).dropshadow({left:6, top:6, blur:3}); // semi-colon definitely goes here }; // I think one can go here too /script On Dec 14, 2007 10:05 PM, Rick Faircloth [EMAIL PROTECTED] wrote: Hi, all… I'm getting this

[jQuery] Re: Ok, I give... where does the ; go in this code?

2007-12-14 Thread Aaron Heimlich
On Dec 14, 2007 11:33 PM, Rick Faircloth [EMAIL PROTECTED] wrote: $(#shadow).dropshadow is not a function $($shadow).dropshadow({left:6, top:6, blur:3}); It's dropShadow(), not dropshadow() -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Ok, I give... where does the ; go in this code?

2007-12-14 Thread Aaron Heimlich
that all languagues I use are case-senstive. Rick *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Aaron Heimlich *Sent:* Saturday, December 15, 2007 12:48 AM *To:* jquery-en@googlegroups.com *Subject:* [jQuery] Re: Ok, I give... where does the ; go in this code