At the moment i'm using a checkbox to select the class that would be shown. is there a way to write it so that when the selected script writer activates, it auto selects the relevent checkbox (radio or similar ) to show the right Class Thanks.. 11 different Classes.. each with totally different layouts. just showing 2 atm.. as an example CSS etc. .sheet-TINKERER:not(:checked) ~ .sheet-tinkerer, .sheet-ROGUE:not(:checked) ~ .sheet-rogue { display: none; } HTML etc. <input type="checkbox" class="sheet-ROGUE"><span>ROGUE&nbsp;|</span> <input type="checkbox" class="sheet-TINKERER"><span>TINKERER&nbsp;|</span> <div class="rogue"> </div> <div class="tinkerer"> </div> <script... etc. else if (setting.pcs === 'e10') { setAttrs({classes: 'TINKERER', Mana: '3', Health: '5', name: 'Keylee', htp1: 'http', Ability: 'COMBAT: discared 1 Item: gain +2 dice rerolls.', Shadow: '+1 Mob Item from your current level.'}); } else if (setting.pcs === 'a11') { setAttrs({classes: 'ROGUE', Mana: '3', Health: '4', name: 'Valerie', htp1: 'http', Ability: 'In Shadow ATTACK: -2 Shields.', Shadow: 'Kill 1 minion. +1 Rogue token: Discard it or save it till the next draw.'}); }