I'm trying to get this jQuery feature to execute class applications. There is no change in the CSS to get the menu to appear/disappear. The function does not even run the console command. The goal is to make a menu appear when the player wants to perform a combo attack but right now nothing appears. I've looked at previous examples posted in feature/developments but can't figure out what I'm missing. Script $20('.combopop .combomenu .SEM').on('click', (event) => { // const selector = `#${event.htmlAttributes.id}`; $20('.combopop').removeClass('activeComboMenu'); console.log("running...") }); HTML <div class="combopop "> <div class="combomenu"> <button type="action" name="act_combomenu" class="SEM">Link</button><br> </div> </div> CSS .combopop { position: fixed; display: none; z-index: 15; } .activeComboMenu { display: block; } .combomenu { display: block; } If this is the incorrect place to put this message, please redirect me, thx