xtubuanx
9/6/2019 - 3:39 AM

jQuery使わずトグルクラス

<script>
						function toggle() {
                            const toggler = document.getElementById('js-toggle');
                            toggler.classList.toggle('is-open');
						}
					</script>