jruderman%hmc.edu 0583272ba2 Is that a crashtest in your pocket, or are you just happy to see me?
git-svn-id: svn://10.0.0.236/trunk@241389 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-15 23:07:08 +00:00

27 lines
345 B
HTML

<html>
<head>
<script>
function boo()
{
var div = document.getElementById("div");
var dd = document.getElementById("dd");
var newSpan = document.createElement('span');
dd.insertBefore(newSpan, div);
}
window.addEventListener("load", boo, false);
</script>
</head>
<body>
<dd id="dd"><div id="div"></div></dd>
</body>
</html>