prashantgajula
Results
1
issues of
prashantgajula
` function deleteConfirm(){ var result = confirm("Do you really want to delete records?"); if(result){ return true; }else{ return false; } } $(document).ready(function(){ $('#check_all').on('click',function(){ if(this.checked){ $('.checkbox').each(function(){ this.checked = true; }); }else{...