Q
Q1tum
Hi there,
I've started using DHTML to dynamicly build a part of my page, I now
need to add a form element (select and textarea), I tryed several
things but it is not working.
if I use the following to create a text field, how can I display it in
the table / form?
(I tried something with: appendChild(input) but that would not work,
perhaps I'm doing it wrong.
var input = document.createElement('input');
input.type = 'text';
input.id = 'inputName';
input.name = 'inputName';
This is my first post here, I hope this is the right place to post my
question.
Regards,
Arno
I've started using DHTML to dynamicly build a part of my page, I now
need to add a form element (select and textarea), I tryed several
things but it is not working.
if I use the following to create a text field, how can I display it in
the table / form?
(I tried something with: appendChild(input) but that would not work,
perhaps I'm doing it wrong.
var input = document.createElement('input');
input.type = 'text';
input.id = 'inputName';
input.name = 'inputName';
This is my first post here, I hope this is the right place to post my
question.
Regards,
Arno