Page 1 of 1
s01e04 - Button Spinner QUESTIONS/SUPPORT
Posted: Thu Mar 11, 2021 11:00 am
by admin
Questions/Support
Re: s01e04 - Button Spinner QUESTIONS/SUPPORT
Posted: Tue Apr 29, 2025 11:41 am
by radhavallabh
Hi;
The addon gives error on phoenix 1.1.0.1
Uncaught DOMException: Element.querySelector: ':submit' is not a valid selector
Kindly help fix it pls;
Regds./
radhavallabh
Re: s01e04 - Button Spinner QUESTIONS/SUPPORT
Posted: Tue Apr 29, 2025 11:46 am
by burt
The :submit pseudo-class is not a valid CSS selector for querySelector or querySelectorAll in JavaScript — it's valid in jQuery but not in pure javascript.
I'll look into it, but it won't be for a while.
Re: s01e04 - Button Spinner QUESTIONS/SUPPORT
Posted: Tue Apr 29, 2025 2:01 pm
by heatherbell
radhavallabh wrote: ↑Tue Apr 29, 2025 11:41 am
The addon gives error on phoenix 1.1.0.1
Uncaught DOMException: Element.querySelector: ':submit' is not a valid selector
Change Line 36
from
Code: Select all
var submitBtn = form.querySelector(':submit');
to
Code: Select all
var submitBtn = form.querySelector('button[type="submit"], input[type="submit"]');