I have many html entities, for example: 確定
(Japanese characters), that are being rendered as the string: 確定
, not as the characters,
if I try:
var inputEl = document.createElement("input");
inputEl.value = "確定
";
Does anyone know a workaround? I'm a little stumped.