FoxSecrets
Guest
offline
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
Continue reading...
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:
function toggleForm(event) {
var form = document.getElementById('search-form');
form.classList.toggle('hidden-form');
console.log(form.classList);
}

Code:
Code:
<div class="block-container">
<div onclick="toggleForm()"...
Read more
Continue reading...