Normal debugging of the following code requires IE5.5 or above browser
[Ctrl+A to select all Note: If you need to introduce external Js, you need to refresh it to execute ]<script>
function DoSave(){
foo.setAttribute("content", foo.innerHTML);
foo.save("EditContent");
}
function DoLoad(){
foo.load("EditContent");
content = foo.getAttribute("content");
if (content != null) foo.innerHTML=content;
}
function DoClear(){
foo.innerHTML = "";
}
</script>