developer155
Programmer
Hi,
I need to create a bunch of dynamic checkboxes with JavaScript when page loads.
Can I do something like this?:
<script lang= javascript>
CreatCheckboxes(int zipcode)
{
//create checkboxes
}
</script>
<html>
....
<td>
CreatCheckboxes(zipcode);
</td>
thanks!!
I need to create a bunch of dynamic checkboxes with JavaScript when page loads.
Can I do something like this?:
<script lang= javascript>
CreatCheckboxes(int zipcode)
{
//create checkboxes
}
</script>
<html>
....
<td>
CreatCheckboxes(zipcode);
</td>
thanks!!