I have a code in php that is being echoed in html:
$tblAccounts .= "<td width=\"100\"><input title=\"$objRow->AccountCode\" name=\"chkAcctField[$objRow->AccountCode]\" id=\"chkAcctField[$objRow->Description]\" value=\"chkAcctField[$objRow->AccountCode]\" type=\"checkbox\" $strIsChecked>" . ucwords($objRow->Description) . "</td>";
now may problem is this...
I don't know how will I get the value of the checkboxes clicked by the user....
when the names and ids are varying. And I need to get the values using javascript....
using getElement returns null.
Please help.