snowboardr
Programmer
I am paging records using AJAX, and well when i goto the second page... my form elements don't respond to any functions that work on the first page of the AJAX'd paging, one of the functions i am using is shown below: Is there something I must do to make this work? Its kind of odd...
thanks
Code:
// check all mail
function checkall() {
var cbCollection = document.forms['fmail'].elements['mailchecks'];
for ( var i = 0; i < cbCollection.length; i++ ) {
if (cbCollection[i].checked==false) {
cbCollection[i].checked=true;
}
}
}
thanks