You can access the checked value of an ASP.net generated checkbox by doing the following.
function ShowWarning() {var checkboxList = $("#");var myCheckbox = checkboxList[0];if (myCheckbox.checked) {$("#Warning").show();}}
You can access the checked value of an ASP.net generated checkbox by doing the following.
function ShowWarning() {var checkboxList = $("#");var myCheckbox = checkboxList[0];if (myCheckbox.checked) {$("#Warning").show();}}
Published by