Node Operation JavaScript DHTML




function function1() {
    myP.innerText = "Try to edit this text by overwriting any part of it.";
    document.all.myP.contentEditable = "true"; ]
}
function function2() {
    myP.innerText = "Try again.";
    document.all.myP.contentEditable = "false"; 

function function3(){
    alert(document.all.myP.isContentEditable);
}

Try to edit this text by overwriting any part of it.


Make the text editable
Make the text non-editable
isContentEditable