Month: December 2021
twig file if-statement: if variable contains a string
{% if ‘.local’ in http_host %} <script> console.log({{ _context | json_encode | raw }}); </script> {% endif %}
toggle class onclick()
$(document).ready(function() { document.getElementById(‘main’).onclick = function() { let elem = document.querySelectorAll(‘.bedroom-links’); // Add the .hide-show class elem.forEach(function (elem) { elem.classList.toggle(‘hide-show’); }); } })