Sometime Today, SN cobbled together some glyphs to say:
- 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