devxlogo

Avoid Hard Carriage Returns in Your HTML Text Strings

Avoid Hard Carriage Returns in Your HTML Text Strings

When using the element property innerHTML to change the text of an element, make sure that you don’t put hard carriage returns inside of the text string. Doing so will cause an “Unterminated string error.” For example, the following code won’t work:

 myObj.innerText = "The innerText property sets or retrieves the text between the start
and end tags of the current element. This read-write property can be any valid string.";

If you do want to include breaks in your script to make your page more readable, one solution is to use the JScript concatenation symbol to concatenate separate strings into one, as in:

 myObj.innerText = "The innerText property sets or retrieves the" + " text between the start and end tags of the" + " current element." + " This read-write property can be any valid + " string.";

VBScript’s concatenation symbol ‘&’ works the same way. For both languages, just make sure that you add spaces between string segments where necessary, since that won’t be done automatically.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist