simpleButton #1

Merged
tdpeuter merged 6 commits from simpleButton into main 2023-08-04 17:11:30 +02:00
Showing only changes of commit c020aacdce - Show all commits

View file

@ -48,13 +48,23 @@ function createCheckButton(destination) {
check(destination, container, dot, message, button); check(destination, container, dot, message, button);
} }
function createTryAgainButton(destination) {
const button = document.createElement('button');
button.textContent = 'Try Again';
button.onclick = function () {
window.location.href = destination;
}
document.getElementById('checkContainer').appendChild(button);
}
function checkDestination() { function checkDestination() {
const url = window.location.search; const url = window.location.search;
const searchParams = new URLSearchParams(url); const searchParams = new URLSearchParams(url);
const destination = searchParams.get('destination'); const destination = searchParams.get('destination');
if (destination) { if (destination) {
createCheckButton(destination); createTryAgainButton(destination);
} }
} }