Earlier quoted context omitted.
We need community consensus on checkboxes per line
43. 43 per line.
One Million Checkboxes
91–100 of 320 posts
Re: One Million Checkboxes
#92(function() { 'use strict';
function checkAllCheckboxes() {
var checkboxes = document.querySelectorAll('input[type="checkbox"]');
checkboxes.forEach(function(checkbox) {
if (!checkbox.checked) {
checkbox.checked = true;
}
});
}
const observer = new MutationObserver((mutations) => {
checkAllCheckboxes();
});
observer.observe(document.body, { childList: true, subtree: true });
checkAllCheckboxes();
})();Re: One Million Checkboxes
#93(developer here) this is....more popular than i expected. the server's gonna be having some problems for a while
I think there's a severe problem with this implementation. By using wrapping, I can't write "boobs" and have everyone else read my graffiti without them having having the same zoom wrapping point.
One check for short, two checks for long, two blanks for end-of-character.
Re: One Million Checkboxes
#94Fun! But I kind of wish it made a bubble wrap popping noise.
Re: One Million Checkboxes
#95Earlier quoted context omitted.
Honestly that was one of my first thoughts when I saw this, someone is going to draw one of those. People love trying to be offensive in something that barely allows communication. I remember seeing some MMORPG that had no chat where players would log in and just stand in the shape of a swastika. Makes me wonder if it's reasonable to write an algorithm to detect that.
Which MMO was that in? I'm working on my own and now I have a new worry on my plate. Short of standard moderation, an algorithm to detect it could be interesting.
Re: One Million Checkboxes
#96Re: One Million Checkboxes
#97Re: One Million Checkboxes
#98Fun and pointless, I love it. Why do some checkboxes have colored borders?
At the moment I found 4 colors
Re: One Million Checkboxes
#99It’s considered bad UX to have a million checkboxes (or a million of any UI element) on a single page. Consider breaking this up into 3-deep nested pages, each with 100 options.
Or at least an accordion for each row of checkboxes, with the first row expanded but all others closed by default.
Re: One Million Checkboxes
#100It’s considered bad UX to have a million checkboxes (or a million of any UI element) on a single page. Consider breaking this up into 3-deep nested pages, each with 100 options.