S
SC G
Hi,
I use a web application that has 120 checkboxes on it
for me to select from before I submit a form. I have
to select boxes in groups of 40 (1-40,41-80,81-120).
Each submission generates a download of a data file.
After I submit the form for each group I move on to
another page with another 120 checkboxes to choose
from. And there are hundreds of pages. Since I use
the same page over and over and always use the
same group of boxes I thought it would be simpler if
I had a javascript application in another browser window
that had a check box allowing me to click a button that
would turn on boxes in the other browser in groups
of 40. Ie. clicking an option 1-40 would select the first 40
in the second window.
The checkboxes are defined like
<input type="checkbox" name="referencenumber" value="191888123">
<input type="checkbox" name="referencenumber" value="213844223">
Is it possible to have a script to check boxes n to n+39 in
another window? Thanks for any ideas.
I use a web application that has 120 checkboxes on it
for me to select from before I submit a form. I have
to select boxes in groups of 40 (1-40,41-80,81-120).
Each submission generates a download of a data file.
After I submit the form for each group I move on to
another page with another 120 checkboxes to choose
from. And there are hundreds of pages. Since I use
the same page over and over and always use the
same group of boxes I thought it would be simpler if
I had a javascript application in another browser window
that had a check box allowing me to click a button that
would turn on boxes in the other browser in groups
of 40. Ie. clicking an option 1-40 would select the first 40
in the second window.
The checkboxes are defined like
<input type="checkbox" name="referencenumber" value="191888123">
<input type="checkbox" name="referencenumber" value="213844223">
Is it possible to have a script to check boxes n to n+39 in
another window? Thanks for any ideas.