Reputation:
I'm storing HTML code within an element attribute like so.
<div data-html-code="<iframe width="560" height="315" src="https://www.youtube.com/embed/sNhhvQGsMEc" frameborder="0" allowfullscreen></iframe>"></div>
How can I escape all the necessary characters to make this valid using jQuery/Javascript?
Upvotes: 1
Views: 167
Reputation: 68393
use this htmlEscape
method
function htmlEscape(str) {
return String(str)
.replace(/&/g, '&')
.replace(/"/g, '"')
.replace(/'/g, ''')
.replace(/</g, '<')
.replace(/>/g, '>');
}
this should give you a string that can be used as a valid html attribute value
Upvotes: 1