RESOLVED
I have a form which contains a checkbox. I want to reset it if another field is empty. So I created an ajax event onClick for the checkbox. In that event I have a call to sc_ajax_javascript(“reset_site_disclaimer”);.
In the Javascript Methods I have defined reset_site_disclaimer. Now I know the reset_site_disclaimer is being triggered because I put in an javascript alert which it shows. But the code document.getElementById(“site_disclaimer”).checked = false; is not working. It does not reset the checkbox. What am I missing?