Uncheck booking.com search on Trainline
< Feedback on Trainline for travel, not accomodation
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'; } }
Sign in to post a reply.
Doesn't work anymore, Trainline is checking the box multiple times during page load...
Here is my fix: