Vor Kurzem aufgerufene Suchen
Keine vor kurzem aufgerufene Suchen

Rasmus Hedback
Beigetreten 14. März 2023
·
Letzte Aktivität 25. Okt. 2023
Folge ich
0
Follower
0
Gesamtaktivitäten
3
Stimme
1
Abonnement
1
AKTIVITÄTSÜBERSICHT
BADGES
BEITRÄGE
POSTS
COMMUNITY-KOMMENTARE
BEITRAGSKOMMENTARE
AKTIVITÄTSÜBERSICHT
Neueste Aktivität von Rasmus Hedback
Rasmus Hedback hat einen Kommentar hinterlassen
Community-Kommentar Q&A - Help center and community
Another approach would be to let the form build the correct query string when submitting it, simply add a hidden input by adding this to script.js
const search_form = document.querySelector('form.search');
const input = document.createElement('input');
input.setAttribute('type', 'hidden');
input.setAttribute('name', 'type');
input.setAttribute('value', 'knowledge_base');
search_form.appendChild(input);
Kommentar anzeigen · Bearbeitet 25. Okt. 2023 · Rasmus Hedback
0
Follower
1
Stimme
0
Kommentare