Hello,
I have a form generated by mySQL and PHP, and inside the form (named 'UpdateDB') each line has checkboxes, like so:
The onclick is to highlight the row, that works fine. However, I wrote a javascript function that toggles the select all the checkboxes or none. This is done by an image:
Easy, right? So heres the Javascript function that the above image (the 'none' part) links to:
Its a brilliant function if I do say so myself, and this is what I dont get: two days ago, it was working fine, today, its not working at all. The image changes, but IE flags up the 'myForm.length' as an error.
How was it working 2 days ago and not today, when I havent touched it? Can anybody advise why its not currently working?
Thanks for your help,
~Chud37
I have a form generated by mySQL and PHP, and inside the form (named 'UpdateDB') each line has checkboxes, like so:
Code:
<input type="checkbox" name="checkbox[]" value="96" onclick="highlight(this,'check_96')">
Code:
<img src="img/select.png" align="top"> <a href="#" onClick="togBox('updateDB');"><img src="img/all.png" name="listToggle" align="top"></a>
Code:
function togBox(form) { var myForm = document.forms[form]; document.listToggle.src=='http://gospeltruth.tv/admin/img/all.png' ? toggle = true : toggle = false; (toggle) ? document.listToggle.src='img/none.png' : document.listToggle.src='img/all.png'; for( var i=0; i < myForm.length; i++ ) { (toggle) ? myForm.elements[i].checked = 'checked' : myForm.elements[i].checked = ''; } }
How was it working 2 days ago and not today, when I havent touched it? Can anybody advise why its not currently working?
Thanks for your help,
~Chud37
Comment