OSCON/test.html
author ivanl
Fri, 21 Aug 2009 16:39:37 +0100
changeset 18 b73e6caf0031
parent 7 97dcd250e5be
permissions -rw-r--r--
Added Wiki support Added TextPane Added large view CSS and images

<html>
<body>
<script language="JavaScript">
function function1() {
   var myElement = document.createElement('<div style="width:300; height:200;background-color:blue;"></div>');
   document.all.myDiv.insertBefore(myElement); 
} 
</script>
<button id="myButton" onclick="function1();">Insert element</button>
<div id="myDiv" style="width:300; height:200;"></div>
</body>
</html>