3

Although for Taj Mahal, the entry is free for kids below 15 years, you are supposed to add the details of your child while booking the entry tickets on https://asi.payumoney.com In my case it allows me to add adults but it doesn't allow me to add the details of the child, the button "Add Child" is not activated (its in grey). I have tried with different browsers but still the problem persists. Any help in this regard is highly appreciated.

jack
  • 133
  • 1
  • 3

2 Answers2

3

Since children do not need a ticket, their details need not be entered. Even if you trick the website into adding children (edit the HTML using Inspect tab), the next step will fail with error "Cannot book ticket for child for Taj Mahal"

From comment

Anish Sheela
  • 17,203
  • 4
  • 49
  • 90
-2

Copy the following snippet:

const addChildBtn = document.querySelector('body > asi-root > div.bg.row > div > div > asi-quick-pay-all > div > div > div.col-sm-12.col-md-4.col-lg-4.borderRight > div > div > form:nth-child(1) > div.col-sm-6.col-md-6.col-lg-6.col-xs-6.leftDiv.manualInput > div > button')
addChildBtn.removeAttribute('disabled')
  • Go the the page where Add child button is present.
  • Press CTRL + SHIFT + J
  • Paste What you copied (CTRL + V)
  • Press Enter

And the Add child button should be enabled now.