vote up 2 vote down star

How do I include a newline in an HTML tag attribute?

For example:

<a href="somepage.html" onclick="javascript: foo('This is a multiline string.
This is the part after the newline.')">some link</a>


Edit: Sorry, bad example, what if the tag happened to not be in javascript, say:

<sometag someattr="This is a multiline string.
This is the part after the newline." />


Edit 2: Turns out the newline in the string wasn't my problem, it was the javascript function I was calling. FWIW, "&#10;" can be used for newline in an HTML attribute.

flag

6 Answers

vote up 5 vote down check

From what I remember about the HTML standard, character entities work in attributes, so this might work:

<sometag someattr="This is a multiline string.&#10;This is the part after the newline." />

I'm not sure if the "newline" you want ought to be &#10; (\n) or &#13;&#10; (\r\n), and I'm not sure if browsers will interpret it the way you want.

Why do you need it? What specific problem are you trying to solve by adding a newline in an HTML tag attribute?

link|flag
It does work. I was about to post the same answer. – Chuck Jun 11 at 22:05
1  
The XML standard for attribute normalization is: w3.org/TR/REC-xml/#AVNormalize You have a good memory :-) – Thomas L Holaday Jun 11 at 22:11
vote up 1 vote down

just put the the text of the html on the next line in your editor e.g.

<input type="submit" value="hallo
hallo">

will put the second hallo's under each other

link|flag
hmm... you're right. the specific problem i was encountering was with the newline inside the javascript, but i assumed it extended to any html attribute in general but i guess i was mistaken. :-/ – Kip Jun 11 at 21:57
vote up 3 vote down

As a general rule newlines in attributes are preserved so your second example would work fine. Did you try it? Can you give a specific example where you are having problems with it?

As test take a look at this:-

<a href="somepage3.html" onclick="javascript: alert(this.getAttribute('thing'))" thing="This is a multiline string.
This is the part after the newline.">some link</a>

The alert include the newline in the attribute.

link|flag
oops, turns out the problem was actually the javascript function i was calling, not the newline in the tag. – Kip Jun 11 at 22:06
vote up 0 vote down

Since it's in Javascript, you would use "\n" if inside double-quotes (not positive about single-quotes, I've been in PHP a lot lately.

Honestly, it's worth mentioning that you should use Events and a delegator instead of placing a javascript event directly on the element.

link|flag
vote up 0 vote down

Usually, line breaks in HTML source code display what you intended in the result.

(Depends on the editor of course)

link|flag
vote up 0 vote down

i'm not certain, but you can try \r or \n

javascript: foo('This is a multiline string.\rThis is the part after the newline.')

or

javascript: foo('This is a multiline string.\nThis is the part after the newline.')
link|flag
What if it happened to not be within javascript? – Kip Jun 11 at 21:40
are my examples not what you're looking for? – Jason Jun 11 at 21:41
sorry, i picked a bad example, i updated the question – Kip Jun 11 at 21:43
re: your edit - i don't think you can do that... – Jason Jun 11 at 21:45
@Jason: You can. – AnthonyWJones Jun 11 at 21:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.