Good time! Such a problem created an AYAX request that generates html code and returns it to the handler in the file. It looks like this
$res['par1'] = "<span id='valsbc".$getupst['id']."'>".$vals."</span>\10"; echo json_encode($res); further when js accepts the answer inserts in the right place it is so
var stbar = html.par1; $("#allststusbuton").html(stbar); and the problem is that probably Jason eats the character \ and the ten after it because they are not displayed, and instead of them the symbol of the famous element (a square with small zeros and eight)
'<span id="valsbc'.$getupst['id'].'">'.$vals.'</span>\10';............. or escape backslash"<span id='valsbc".$getupst['id']."'>".$vals."</span>\\10";- Alexey Shimansky