how to send javascript values in html table -
i got values throw sdocstr. , need send sdocstr values html table.. can help me.
function myfunction() { document.write(sdocstr); mytable += "<html><table>"; mytable += "<tr><td style='font-family:trebuchet ms;font-size:12px;font-weight:bold;font-style:italic;'>sdocstr</td></tr>"; mytable += "</table></html>"; }
you can :
function myfunction() { document.write(sdocstr); mytable += "<html><table>"; mytable += "<tr><td style='font-family:trebuchet ms;font-size:12px;font-weight:bold;font-style:italic;'>" + sdocstr + "</td></tr>"; mytable += "</table></html>"; }
is ok ?
javascript html
No comments:
Post a Comment