Topic: stumbling down a long dark hallway (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: beyond the gray sky |
posted 07-23-2009 23:34 |
Maniac (V) Mad Scientist From: |
posted 07-24-2009 00:18
Return to programming? RETURN to programming? |
Paranoid (IV) Inmate From: beyond the gray sky |
posted 07-24-2009 03:47
very true, but I'm completely out of practice. I haven't done much of anything since early 2006 |
Paranoid (IV) Inmate From: beyond the gray sky |
posted 07-24-2009 09:16
so if any of you wonderful gurus are around, have a look at http://www.ixifx.net/workspace.php code: function writeXML(){ var myTable=document.getElementById('settings'); var len=myTable.getElementsByTagName("input").length; var working; var count=0; alert("Working Variable Check - \n myTable = " + myTable + "\n len= " + len + "\n count = " + count); for (count=0;count<len;count++){ working = working + myTable.getElementsByTagName("input")[count].value + "\n"; alert(working); } alert("Done"); document.getElementById('xml').value = working; }
|