> var all = $("#tagsSelect").html() + "<input type='checkbox' name='" +
> ascii + "'> " + json[eid][type][ascii] + "</input><br>\n";
>   $("#tagsSelect").html(all);

Why not this?

$("#tagsSelect").append(
  '<input type="checkbox" name='"' +  ascii + "' />" +
   json[eid][type][ascii] + "<br>");


Reply via email to