So, I know how to type text into a javascript box and have it appear on the
page. But when I refresh the page, all the text posted to the page
vanishes. So, what I was asking was: Can I make the text I paste to the
page with javascript STAY there, so that even after I refresh the page, it
is st
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
3 matches
Mail list logo