The issue is it prevents the form on the page from functioning properly. There is existing logic on the web app for the onchange event in the form so when certain selections are made, the form dynamically displays other questions. When I introduce my code (above) , the existing dynamic field display breaks. Is there a way to rectify this in my code? I am injecting code via a tag management system so I can't touch the code on the page, I can only change my injected code. Is there a way to fix my code so it won't impact the other onchange logic?
Thanks!
Web DevelopmentJavaScript
Last Comment
MJ
8/22/2022 - Mon
David S.
It seems that you're overwriting the existing event handler. You need to add the new one via addEventListener() instead.
MJ
ASKER
Any idea how that would work based on the sample code?