Re: Coding and decoding HTML entities
Tech-Archive recommends: Fix windows errors by optimizing your registry
Dennis Marks wrote:
Is there a way in Javascript to convert from a character to its entity
and from its entity to a character? I wish to do it in a form. For
example someone enters ♥ into the form and a heart is shown in
the output.
Well if you are talking about JavaScript used in the browser in a HTML
document then innerHTML helps e.g.
var span = document.createElement('span');
span.innerHTML = '♥';
someElement.appendChild(span);
> Also the reverse where a heart in entered into the form and
♥ is displayed.
For that you would need to set up some data structure that maps
characters to entity names.
--
Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
.
Relevant Pages
- Re: Coding and decoding HTML entities
... example someone enters ♥ into the form and a heart is shown in ... you give the exact code assuming a form named "Form3", input field ... then render on your page. ... You should therefore reject the < character in any input the user will need ... (microsoft.public.scripting.jscript) - Re: Coding and decoding HTML entities
... example someone enters ♥ into the form and a heart is shown in ... you give the exact code assuming a form named "Form3", input field ... then render on your page. ... You should therefore reject the < character in any input the user will need ... (microsoft.public.scripting.jscript) - Re: I made sausage balls - pix
... aware that one is also presenting one's character (you being a "Blue ... Ribbon" type 'o gal you take this to heart and act accordingly, ... (rec.food.cooking) - Re: Australia v England - 1st Test
... Day 3 is going to be a huge lesson in ... old-fashioned character and heart. ... On the bright side [sickly grin] ... (rec.sport.cricket) - Re: OLTL-ABC Email Spoilers
... totally having his heart (literally - when Viki needed a heart ... "Life with Bonnie" and his OLTL character was put into a coma to ... the heart transplant story..."Life with Bonnie" was cancelled by ABC ... (rec.arts.tv.soaps.abc) |
|