Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- window.addEventListener('load', function() {
- const parentDiv = document.querySelector('div[id^="order-bump-"]');
- if (parentDiv) {
- const checkbox = parentDiv.querySelector('input[type="checkbox"]');
- if (checkbox) {
- checkbox.id = 'hiddenbump';
- checkbox.click();
- parentDiv.style.display = 'none';
- }
- }
- const pricePlanListContainers = document.querySelectorAll('div[class*="PricePlanListUi"]');
- pricePlanListContainers.forEach(function(listContainer) {
- const radios = listContainer.querySelectorAll('input[type="radio"]');
- if (radios.length === 1) {
- radios[0].parentElement.removeChild(radios[0]);
- }
- });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement