Re: Unterminated string literal

2007-12-01 Thread Richard White
Thanks very much Josh and Claude I will play around with these :) thanks again ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where now http://www.adobe.

Re: Unterminated string literal

2007-11-30 Thread Claude Schneegans
>>when i try to use that text in javascript it produces an error saying unterminated string literal. Use the CF function JSStringFormat(string) to create your JS string. It will escape characters that need to be escaped, likes CR and quotes. -- ___

Re: Unterminated string literal

2007-11-30 Thread Josh Nathanson
Message - From: "Richard White" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Friday, November 30, 2007 3:26 PM Subject: Unterminated string literal > Hi, > > i am using mysql to store data. > > i have a text area on a page and have noticed that if someone adds t

Re: Unterminated string literal

2007-11-30 Thread Richard White
this is an example of the error that it is producing: function checkSave() 289 { 290 if($('txtQuestionName').value != "Subject_Family Details" || $('txtDescriptionName').value != "saSa 291ASA 292ASasaSs 293asaS") 294 { 295 $('saveButton').disabled = ""; 296 } notice that on line 290 it takes the

Unterminated string literal

2007-11-30 Thread Richard White
Hi, i am using mysql to store data. i have a text area on a page and have noticed that if someone adds text then presses enter at the very end without adding any more text, mysql saves it ok but then when i try to use that text in javascript it produces an error saying unterminated string