<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Check all Checkboxes in Page via Developer Tools]]></title><description><![CDATA[<p dir="auto"><a href="https://stackoverflow.com/questions/14245769/check-all-checkboxes-in-page-via-developer-tools" rel="nofollow ugc">https://stackoverflow.com/questions/14245769/check-all-checkboxes-in-page-via-developer-tools</a></p>
<pre><code>(function() {
    var aa= document.getElementsByTagName("input");
    for (var i =0; i &lt; aa.length; i++){
        if (aa[i].type == 'checkbox')
            aa[i].checked = true;
    }
})()
</code></pre>
]]></description><link>http://an.forum.genostack.com/topic/901/check-all-checkboxes-in-page-via-developer-tools</link><generator>RSS for Node</generator><lastBuildDate>Sat, 13 Jun 2026 10:43:05 GMT</lastBuildDate><atom:link href="http://an.forum.genostack.com/topic/901.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 23 May 2023 06:10:46 GMT</pubDate><ttl>60</ttl></channel></rss>