show/hide this revision's text 2 edited tags
show/hide this revision's text 1

Prototype select all checkboxes code works in IE, but not Firefox

I'm using prototype 1.6.0.1. I'm trying to select all the checkboxes when clicking a button. This code works in IE 6, but does NOT in Firefox 3. What am I doing wrong?

<input class="submit" type="button" value="check all" onclick="$(this.form).getInputs('checkbox').each(function (elem) {elem.checked = true;});" />