Prototype select all checkboxes code works in IE, but not Firefox - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T14:25:15Z http://stackoverflow.com/feeds/question/745307 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/745307/prototype-select-all-checkboxes-code-works-in-ie-but-not-firefox 1 Prototype select all checkboxes code works in IE, but not Firefox Robert 2009-04-13T20:36:39Z 2009-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>&lt;input class="submit" type="button" value="check all" onclick="$(this.form).getInputs('checkbox').each(function (elem) {elem.checked = true;});" /&gt; </code></pre> http://stackoverflow.com/questions/745307/prototype-select-all-checkboxes-code-works-in-ie-but-not-firefox/745324#745324 -1 Answer by boj for Prototype select all checkboxes code works in IE, but not Firefox boj 2009-04-13T20:40:15Z 2009-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#745385 0 Answer by zalew for Prototype select all checkboxes code works in IE, but not Firefox zalew 2009-04-13T21:00:14Z 2009-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#745996 2 Answer by Alconja for Prototype select all checkboxes code works in IE, but not Firefox Alconja 2009-04-14T01:21:46Z 2009-04-15T23:51:57Z <p>I created a very basic page to test your issue:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" src="prototype-1.6.0.3.js" &gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;form&gt; &lt;input type="checkbox" id="test1" /&gt; Test 1&lt;br/&gt; &lt;input type="checkbox" id="test2" /&gt; Test 2&lt;br/&gt; &lt;input type="checkbox" id="test3" /&gt; Test 3&lt;br/&gt; &lt;input type="checkbox" id="test4" /&gt; Test 4&lt;br/&gt; &lt;input class="submit" type="button" value="check all" onclick="$(this.form).getInputs('checkbox').each(function (elem) {elem.checked = true;});" /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>&amp; 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 &amp; its not working, the best I can suggest is that you turn your onclick into a propper function call &amp; 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>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" src="prototype-1.6.0.3.js" &gt;&lt;/script&gt; &lt;script type="text/javascript" &gt; function checkAll(button) { var form = $(button.form); var inputs = form.getInputs('checkbox'); inputs.each(function (elem) { elem.checked = true; }); } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;form&gt; &lt;input type="checkbox" /&gt; Test 1&lt;br/&gt; &lt;input type="checkbox" /&gt; Test 2&lt;br/&gt; &lt;input type="checkbox" /&gt; Test 3&lt;br/&gt; &lt;input type="checkbox" /&gt; Test 4&lt;br/&gt; &lt;input class="submit" type="button" value="check all" onclick="checkAll(this)" /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Then you can put break points in the function &amp; 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#1046052 0 Answer by Adolfo Abegg for Prototype select all checkboxes code works in IE, but not Firefox Adolfo Abegg 2009-06-25T20:27:52Z 2009-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>