I implemented a toggle form, it works on desktop view but not in mobile view.
I can see the function working in mobile view however do not toggle the form.
Is there any special setup to run javascript in Xenforo mobile view?
Code:
Code:
Read more
Читать далее...
I can see the function working in mobile view however do not toggle the form.
Is there any special setup to run javascript in Xenforo mobile view?
Code:
Код:
function toggleForm(event) {
var form = document.getElementById('search-form');
form.classList.toggle('hidden-form');
console.log(form.classList);
}
Code:
Код:
<div class="block-container">
<div onclick="toggleForm()"...
Read more
Читать далее...