decode - How to convert HTML entities into special characters using plain JavaScript -
with of bucabay able encode special characters html entities below link ref: (how convert characters html entities using plain javascript) want decode them i.e.how convert html entities special characters again.
regards, aa.
you can using basic javascript or using jquery..
newtext = "übergroße äpfel mit würmern";
var my_unescaped_text = jquery('').html(newtext).text();
Comments
Post a Comment