Trainline for travel, not accomodation

Uncheck booking.com search on Trainline

< Feedback on Trainline for travel, not accomodation

Review: Bad - script does not work

§
Posted: 11.09.2024

Doesn't work anymore, Trainline is checking the box multiple times during page load...

Here is my fix:

(new MutationObserver(check)).observe(document, {childList: true, subtree: true});

function check(changes, observer) {
    let c;
    if ((c = document.getElementById('bookingPromo')) && c.checked) {
        c.click();
        c.parentNode.parentNode.parentNode.style.visibility = 'hidden';
    }
}

Post reply

Sign in to post a reply.

长期地址
遇到问题?请前往 GitHub 提 Issues。