Sometime Today, SN cobbled together some glyphs to say:

5. Execute the following statement with the appropriate field name.
The example given below till change the column for DD Date to
01/01/1983 :
for(i=0, a=document.getElementsByTagName('input'); i<a.length; i++)
{if (a[i].name=='DDDATE') {a[i].value='01/01/1983'; break;}}

easier to do document.getElementsByName('DDDATE')[0].value='01/01/1983';

and you don't need firebug to do this, you can do it in your URL bar by typing this:

javascript:alert(document.getElementsByName('DDDATE')[0].value='01/01/1983')

Philip


--
Mulder: You mean there's no procedure outlined for an invisible assassin?

        "The X-Files: Unrequited"

--
http://mm.glug-bom.org/mailman/listinfo/linuxers

Reply via email to