'insertAdjacentText()' Example : insertAdjacentText « Node Operation « JavaScript DHTML






'insertAdjacentText()' Example

    
<html>
<body>
<script language="JavaScript">
function function1() {
   var myText = 'Some Sample Text';
   document.all.myDiv.insertAdjacentText('afterBegin', myText); 
} 
</script>
<button onclick="function1();">Insert element</button>
<div id="myDiv" style="width:300; height:200; border:solid black 1px;">
www.java2s.com
</div>
</body>
</html>

    
      
      








Related examples in the same category