Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<head>
<script>
function init()
{
tbody = document.getElementsByTagName("tbody")[0];
comment = document.createComment('foopy');
tbody.parentNode.insertBefore(comment, tbody);
}
window.addEventListener("load", init, false);
</script>
</head>
<body>
<table><tbody><tr><td></td></tr></tbody></table>
</body>
</html>