I have one control. I am trying to update this control using jquery, but the value after the space is a space.
if (brandObj != "") { brandObj = eval("(" + brandObj + ")"); $.each(brandObj, function(i, item) { $("#<%=listBrand.ClientID%>").append( "<option value="+ item.Brand + ">" + item.Brand + "</option>"); }); }
The data that I receive from the server

But after rendering it as an HTML selection, it omits the word after space.whole there is a value, but as soon as I get the value, it has only half (the value, which is in double quotes). I tried adding
but it is shown as is. it is not rendering like space. please give your suggestion.

source share