Can I permanently post a JavaScript text node to a wabpage?
Script:
window.onload = initAll;
var nodeChangingArea;
function initAll() {
document.getElementsByTagName("form")[0].onsubmit = function()
{return nodeChanger();}
nodeChangingArea = document.getElementById("modifiable"
Is it possible to take a node:
window.onload = initAll;
var nodeChangingArea;
function initAll() {
document.getElementsByTagName("form")[0].onsubmit = function() {return
nodeChanger();}
nodeChangingArea = document.getElementById("modifiable");
}
function addNode() {
var inText = docum
2 matches
Mail list logo