Node Operation JavaScript DHTML




function function1(){
    var m = document.getElementById("myDiv").getAttributeNode("id");
    alert("The value of the attributeNode is: "+'"'+m.value+'"');
    var n = document.all.myDiv.removeAttributeNode(m);
    alert("The attribute node has been removed");
}

This is a div element

This is another div element