On 1 Mar 2007, at 16:52:11, Bob Schwartz wrote:

 Nick,

Thanks. Now that I see how you have done it, I may be able to guess my way through the others I have to do.

Is there a "(" missing in the second line of your version?

No, but there's a ")" where there shouldn't be :-)

   var text = "© " + year + " myplace");

should be

var text = "© " + year + " myplace";

although there's no harm in doing

var text = ("© " + year + " myplace");

as they both produce the same result.

Cheers,

Nick.
--
Nick Fitzsimons
http://www.nickfitz.co.uk/





*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to