Fred Figueiredo wrote: > After this I call a funcion that does: > .... > main.document.t.value="hello"; > ...
Is t an element (ie using document.all)? If so, you should be doing
main.document.getElementById('t').value="hello";
Ian
Fred Figueiredo wrote: > After this I call a funcion that does: > .... > main.document.t.value="hello"; > ...
Is t an element (ie using document.all)? If so, you should be doing
main.document.getElementById('t').value="hello";
Ian