Cod: Selectaţi tot
var user = "O'Conner, John";
b.innerHTML += "<input type='hidden' value='" + user + "'>";
Cod: Selectaţi tot
<input type="hidden" value="O" Conner, John'>
Cod: Selectaţi tot
<input type="hidden" value="O'Conner, John">
Cod: Selectaţi tot
var user = "O'Conner, John";
b.innerHTML += "<input type='hidden' value='" + user + "'>";
Cod: Selectaţi tot
<input type="hidden" value="O" Conner, John'>
Cod: Selectaţi tot
<input type="hidden" value="O'Conner, John">
Cod: Selectaţi tot
var user = "O'Conner, John";
user = user.replace("'", "‘");
b.innerHTML += "<input type='text' value='" + user + "'>";