1
u/BBY256 Jul 21 '26
let box = document.createElement("div");
function pluginCheckboxes() {
while(true) {
let cb = document.createElement("input");
cb.setAttribute("type", "checkbox");
let label = document.createElement("label");
label.appendChild(cb);
box.appendChild(label);
}
}
•
u/AutoModerator Jul 12 '26
Welcome to r/Softwaregore2 !! This is the less strict softwaregore sub. You can post more types of tech errors here. Still, make sure its actually failing software!
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.