I suppose you mean client side?
I have applications that do this in _javascript_.
Inside the form is a table, and I use a function that adds a row in the table, a TD inside the row,
and an INPUT field in the TD. Ie:
<FORM...>
<TABLE ID="myTable"....>
...
</TABLE>
</FORM>
....
<SCRIPT>
function addField()
{
var table = getElementById("myTable");
// create new row in table
var tr = table.insertRow();
var td = tr.insertCell();
td.innerHTML = "_expression_ ";
td = tr.insertCell();
td.innerHTML = '<INPUT TYPE="checkbox" ...etc... >';
}
</SCRIPT>
Et voilà... ;-)
Of course, the table may contain more elements.
It probabily won't work with Mozzilla, and I did not try to find a way to do it with Mozzilla.
When there is a decent documentation about Mozilla's _javascript_, I may spend some time to take a look.
--
_______________________________________
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

