How do I use jQuery to decode HTML entities in a string?
Or how do I stop jQuery from encoding a string with HTML entities in the first place?
|
How do I use jQuery to decode HTML entities in a string? Or how do I stop jQuery from encoding a string with HTML entities in the first place? |
|||||||||||
|
|
Actually, try
|
|||||||||||||||||||||
|
|
I think you're confusing the text and HTML methods. Look at this example, if you use an element's inner HTML as text, you'll get decoded HTML tags (second button). But if you use them as HTML, you'll get the HTML formatted view (first button).
First button writes : here is a HTML content. Second button writes : here is a <B>HTML</B> content. By the way, you can see a plug-in that I found in jQuery plugin - HTML decode and encode that encodes and decodes HTML strings. |
||||
|
|
|
The question is limited by 'with jQuery' but it might help some to know that the jQuery code given in the best answer here does the following underneath...this works with or without jQuery:
|
|||
|
|
|
|||||||||||||||
|
|
Use
It is easiest to do it on the server side because apparently JavaScript has no native library for handling entities, nor did I find any near the top of search results for the various frameworks that extend JavaScript. Search for "JavaScript HTML entities", and you might find a few libraries for just that purpose, but they'll probably all be built around the above logic - replace, entity by entity. |
||||
|
|
|
Like Mike Samuel said, don't use jQuery.html().text() to decode html entities as it's unsafe. Instead try the Underscore.js utility-belt library which comes with _.escape(string) Escapes a string for insertion into HTML, replacing
Note:
|
|||
|
|
I just had to have an HTML entity charater (⇓) as a value for a HTML button. The HTML code looks good from the beginning in the browser:
Now I was adding a toggle that should also display the charater. This is my solution
This displays ⇓ again in the button. I hope this might help someone. |
||||
|
|
|
You have to make custom function for html entities:
|
|||
|
|
|
The easiest way is to set a class selector to your elements an then use following code:
Nothing any more needed! I had this problem and found this clear solution and it works fine. |
|||
|
|
|
To decode HTML Entities with jQuery, just use this function:
How to use: Javascript:
HTML:
|
|||
|
|