Thanx for your time.
----- Original Message -----
From: "Greg Landers" <[EMAIL PROTECTED]>
Date: Sun, 23 May 2004 16:58:17 -0500
To: CF-Talk <[EMAIL PROTECTED]>
Subject: Re: _javascript_ problem
It appears that you have left out some quotes in your string construction.
Instead of this:
data = "" + <TR><TD><DIV><P><B> + "Depart " + i + ":"</B></P></DIV></TD><TD><P> + "<INPUT maxLength=50
+ size=45 name="depart" + i + ></P></TD></TR>";
Try this:
data = "" + "<TR><TD><DIV><P><B>" + "Depart " + i + ":</B></P></DIV></TD><TD><P>" + "<INPUT maxLength=50
+ size=45 name='depart" + i + "'></P></TD></TR>";
Thanks,
Greg
----- Original Message -----
From: Spectrum WebDesign
To: CF-Talk
Sent: Sunday, May 23, 2004 4:37 PM
Subject: OT: _javascript_ problem
Sorry Jillian... using your email header.... ;-)
I'm sorry to be posting OT... but I've got a _javascript_ problem that's
plaguing me.
This js script works fine...
data = "" + "Depart " + i + " :" + spaces
+ "<input type='text' size=10 maxlength=30 name=" + inter
+ "depart" + i + inter + "'><br>";
Now, converting to use tables and after CSS give me an error:
data = "" + <TR><TD><DIV><P><B> + "Depart " + i + ":"</B></P></DIV></TD><TD><P> + "<INPUT maxLength=50
+ size=45 name="depart" + i + ></P></TD></TR>";
What i need: show DepartX in left column and departX in right column.
Do you have any ideas? Comments?
Thanx in advance for your time.
--
___________________________________________________________
Sign-up for Ads Free at Mail.com
http://promo.mail.com/adsfreejump.htm
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

