mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 18:00:15 +01:00
24 lines
294 B
HTML
24 lines
294 B
HTML
<html>
|
|
|
|
<head>
|
|
|
|
<script>
|
|
|
|
function mO ()
|
|
{
|
|
document.getElementById('ds').innerHTML="<span>text before table<TABLE BGCOLOR=red><TR><TD>table</TD></TR></TABLE>text after table<\/span>";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
|
|
<body onload="mO();mO();">
|
|
|
|
<div id="ds">
|
|
orig contents of ds
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |