Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html><head><title>create a table row</title>
<script>
<!--
function createRow(menuid){
var daRow;
daRow = document.createElement("TR");
daTd = document.createElement("TD");
datext=document.createTextNode("theText");
daTd.appendChild(datext);
with(daRow){
appendChild(daTd);
}
document.getElementById("_tbody").appendChild(daRow);
}
//-->
</script>
</head>
<body>
<form name=my>
<input type="button" value="create row" onclick="createRow('aa')"><br>
<input type="button" value="html" onclick="alert(document.body.innerHTML)"><br>
</form>
<table >
<tbody id="_tbody">
<tr >
<td>old row</td>
</tr>
</tbody>
</table>
</body>
</html>