Javascript Methods JavaScript Reference




function function1() {
    myRange = document.body.createControlRange();
    myDiv = document.createElement('div');
    document.body.insertBefore(myDiv);
    myDiv.style.position = 'absolute';
    myDiv.innerText = 'Here is the new content.';
    myRange.addElement(myDiv); 




       type="button" 
       value="Add element to the controlRange collection" 
       onclick="function1();">