Hello,
Suppose I have a table like this :
<table width = "580">
<tr align = "right" width = 760>
<td id = "current_page_i nner">
<font size="4" color="lightgre en" face="arial"><b ><i>
abc
</i></b>
</font>
</td>
</tr>
</table>
....
if I do in code :
current_page_in ner.children(0) .innerText = "bcd"
the text is changed to the new text,
and the font doesn't change,
but the font is not italic and not bold as the original.
Why ?
Thanks :)
Suppose I have a table like this :
<table width = "580">
<tr align = "right" width = 760>
<td id = "current_page_i nner">
<font size="4" color="lightgre en" face="arial"><b ><i>
abc
</i></b>
</font>
</td>
</tr>
</table>
....
if I do in code :
current_page_in ner.children(0) .innerText = "bcd"
the text is changed to the new text,
and the font doesn't change,
but the font is not italic and not bold as the original.
Why ?
Thanks :)
Comment