Skip to content

Instantly share code, notes, and snippets.

@rajvanshipradeep15
Created May 13, 2013 12:32
Show Gist options
  • Save rajvanshipradeep15/5567991 to your computer and use it in GitHub Desktop.
Save rajvanshipradeep15/5567991 to your computer and use it in GitHub Desktop.
joomla: select all checkboxes
<input type="checkbox" onclick="selectAll(this)" title="Check All" value="" name="sAll">
function selectAll(x) {
for(var i=0,l=x.form.length; i<l; i++)
if(x.form[i].type == 'checkbox' && x.form[i].name != 'sAll')
x.form[i].checked=x.form[i].checked?false:true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment