Chatp GPT-4 has got me going! :D
function custom_header_code() {
?>
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', (event) => {
if (window.innerWidth <= 600) {
const div = document.querySelector('div#toggle-id-1');
const p = document.querySelector('.toggler');
if(div || p) {
div.classList.remove('active_tc');
p.classList.remove('activeTitle');
}
}
});
</script>
<?php
}
add_action( 'wp_head', 'custom_header_code' );