Just wondering if anyone knows if there is a way to make a dynamic array from checkbox id's
for example, 4 check boxes on a page with id's from cbo3706 to cb03709, requires the array:
var a = ("cbo3706","cbo3707","cbo3708","cbo3709"
but what if there are 5 checkboxes on the page
- the array needs to be:
var a = ("cbo3706","cbo3707","cbo3708","cbo3709","cbo3710"
Is there any way I can get the amount of text boxes onLoad of the page, and build the array dynamically ?
any suggestions would be appreciated.
for example, 4 check boxes on a page with id's from cbo3706 to cb03709, requires the array:
var a = ("cbo3706","cbo3707","cbo3708","cbo3709"
but what if there are 5 checkboxes on the page
- the array needs to be:
var a = ("cbo3706","cbo3707","cbo3708","cbo3709","cbo3710"
Is there any way I can get the amount of text boxes onLoad of the page, and build the array dynamically ?
any suggestions would be appreciated.