Toggle form in mobile view not working

Status
This content is read-only, or is not open for further replies.

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

1709897370978.webp

Code:

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

Read more

Continue reading...
 
Liked by:
Status
This content is read-only, or is not open for further replies.
Top Bottom