<html>
<body>
<script language="JavaScript">
function function1() {
if (document.all) {
var myNew = document.createElement("div");
myNew.innerText = "This is a swapped element"
myNew.style.color = "red"
myDiv.swapNode(myNew);
}
}
</script>
<div id="myDiv">This is a div element</div>
<input type="button" value="SwapNode" onClick="function1();">
</body>
</html>