Jakob Sheet Author API Scripter Permalink for 5690792 Quote Report There's no need for sheet workers. Use the following; you still need the select somewhere to make the actual switch, of course. <input type="checkbox" name="attr_dropdown_option" value="1" class="sheet-hidden sheet-hider" checked>
<div class="sheet-block-a">A</div>
<input type="checkbox" name="attr_dropdown_option" value="2" class="sheet-hidden sheet-hider">
<div class="sheet-block-b">B</div>
<input type="checkbox" name="attr_dropdown_option" value="3" class="sheet-hidden sheet-hider">
<div class="sheet-block-c">C</div>
CSS .sheet-hidden {
display: none;
}
.sheet-hider:not(:checked) + div {
display: none;
} I can not figure out how to set up the Switch for this.... ANY help?????