Javascript Properties JavaScript Reference




function function1() {
    myP.innerText = "content editable true";
    document.all.myP.contentEditable = "true"; 
}
function function2() {
    myP.innerText = "content editable false";
    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