Prototype select all checkboxes code works in IE, but not Firefox - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T14:25:15Zhttp://stackoverflow.com/feeds/question/745307http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/745307/prototype-select-all-checkboxes-code-works-in-ie-but-not-firefox1Prototype select all checkboxes code works in IE, but not FirefoxRobert2009-04-13T20:36:39Z2009-06-25T20:27:52Z
<p>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?</p>
<pre><code><input class="submit" type="button" value="check all" onclick="$(this.form).getInputs('checkbox').each(function (elem) {elem.checked = true;});" />
</code></pre>
http://stackoverflow.com/questions/745307/prototype-select-all-checkboxes-code-works-in-ie-but-not-firefox/745324#745324-1Answer by boj for Prototype select all checkboxes code works in IE, but not Firefoxboj2009-04-13T20:40:15Z2009-04-13T20:40:15Z<p>What is you replace </p>
<pre><code>$(this.form)
</code></pre>
<p>with </p>
<pre><code>$('MYFORMNAME')
</code></pre>
<p>?</p>
http://stackoverflow.com/questions/745307/prototype-select-all-checkboxes-code-works-in-ie-but-not-firefox/745385#7453850Answer by zalew for Prototype select all checkboxes code works in IE, but not Firefoxzalew2009-04-13T21:00:14Z2009-04-13T21:00:14Z<p>The form is the parent of the input, so this.form shouldn't make sense. Use an ID selector or parent.</p>
<p>Second thing - declare this js to assign action on document load, this way is a bit messy, separate js from html to have a clean flexible codebase.</p>
<p>In jQuery it'd be sth like:</p>
<pre><code>$(document).ready(function(){
$.('#submitId').click(function(){
// check the checkboxes
});
}
</code></pre>
<p>in prototype should be similar.</p>
http://stackoverflow.com/questions/745307/prototype-select-all-checkboxes-code-works-in-ie-but-not-firefox/745996#7459962Answer by Alconja for Prototype select all checkboxes code works in IE, but not FirefoxAlconja2009-04-14T01:21:46Z2009-04-15T23:51:57Z<p>I created a very basic page to test your issue:</p>
<pre><code><html>
<head>
<script type="text/javascript" src="prototype-1.6.0.3.js" ></script>
</head>
<body>
<form>
<input type="checkbox" id="test1" /> Test 1<br/>
<input type="checkbox" id="test2" /> Test 2<br/>
<input type="checkbox" id="test3" /> Test 3<br/>
<input type="checkbox" id="test4" /> Test 4<br/>
<input class="submit" type="button" value="check all" onclick="$(this.form).getInputs('checkbox').each(function (elem) {elem.checked = true;});" />
</form>
</body>
</html>
</code></pre>
<p>& it works fine for me in Firefox 3.0.8 (as well as IE)...</p>
<p>I disagree with the other answers... this.form should be fine (gets the form object from the submit button, which should then let you get the checkboxes from it via getInputs).</p>
<p>What is the actual issue? Nothing happening at all? If so, the only thing i can think off is, are the checkboxes in the same form as the button?</p>
<p><b>EDIT:</b> If your code is effectively the same as the above & its not working, the best I can suggest is that you turn your onclick into a propper function call & then use <a href="http://getfirebug.com/" rel="nofollow">firebug</a> to work out which specific bit isn't working. I.e. make your code look like this:</p>
<pre><code><html>
<head>
<script type="text/javascript" src="prototype-1.6.0.3.js" ></script>
<script type="text/javascript" >
function checkAll(button) {
var form = $(button.form);
var inputs = form.getInputs('checkbox');
inputs.each(function (elem) {
elem.checked = true;
});
}
</script>
</head>
<body>
<form>
<input type="checkbox" /> Test 1<br/>
<input type="checkbox" /> Test 2<br/>
<input type="checkbox" /> Test 3<br/>
<input type="checkbox" /> Test 4<br/>
<input class="submit" type="button" value="check all" onclick="checkAll(this)" />
</form>
</body>
</html>
</code></pre>
<p>Then you can put break points in the function & make sure that 'button', 'form' and 'inputs' are what you expect them to be and that the 'elem' in the each loop is too.</p>
http://stackoverflow.com/questions/745307/prototype-select-all-checkboxes-code-works-in-ie-but-not-firefox/1046052#10460520Answer by Adolfo Abegg for Prototype select all checkboxes code works in IE, but not FirefoxAdolfo Abegg2009-06-25T20:27:52Z2009-06-25T20:27:52Z<p>You can see the solution in this link:
<a href="http://www.ryboe.com/2008/07/10/select-all-checkboxes-with-prototype-js.html" rel="nofollow">http://www.ryboe.com/2008/07/10/select-all-checkboxes-with-prototype-js.html</a></p>
<p>If you don't wanna click, try this:</p>
<pre><code>var form = $('options');
checkboxes = form.getInputs('checkbox');
checkboxes.each(function(e){ e.checked = 0 });
</code></pre>