vote up 0 vote down star

hi

i have following problem - from the server side i get a string like 'hoschi"brother' i want to put this string into a <input value"MYSTRING" />. this results in something like <input value"hoschi" brother" /> which obviously does not work.

any workarounds for this? does escaping the " character with &quot; work within the value tag?

thanks for your help, tobi

flag
6  
Have you actually tried it? That's usually quicker than posting a question and waiting a few hours for an answer. – Bryan Oakley Oct 20 at 10:55

2 Answers

vote up 4 vote down check

Yes, using &quot; works:

<input type="text" name="last_name" value="&quot;My quote!&quot;" />
link|flag
vote up 6 vote down

does escaping the " character with " work within the value tag?

Yes. (This isn't a workaround though, it is how HTML is designed to work).

Alternatively, if the value contains only single quotes or only double quotes, then you can use the other to delimit the attribute instead.

link|flag

Your Answer

Get an OpenID
or

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