Date: 11/23/05 (Web Development) Keywords: java Can anybody tell me why my javascript validator won't work? and this is the javascript (which is on the bottom of the page, not in the head as it is supposed to be because of the way the div appears/disappears depending on the form being submitted, it also appears only if sent from a certain link): var modal = document.getElementById('modalWdw'); function showModal() { modal.style.display='block'; } function hideModal() { modal.style.display='none'; return true; } function doValidate() { var group1Checked; for (var i=0; i
|