Hi,
I have implemented an Ajax object - a div containing another ASP file which can be updated dynamically.
This ASP page has a number of checkboxes.
Is it possible to use JS (or any other tool) to check the checkbox status (i.e. like javascript's
if (field.checked)
) from the containing HTML/ASP file?
This is how I used to check the status when the checkboxes were in the containing HTML:
<img src="images/trail/ChooseAll.png" border=0 onclick="checkAll(document.<form_name>.<CheckBox_Name>)">
But now the form is in the Ajax object's ASP file, so "document" wouldn't work.
Ideas?
Thanks in advance,
Asaf