How to override DOM changes?
I am working on a demo in which the client has a modal box which display
is set to none
. When I click on the CTA button fadein
and fadeout
classes are applied, and display:none
changes to display:block
for 3-4 sec and then display:block
is turned back into display:none
I want to remove toggle display:none
to display:block
and remove the fadein
and fadeout
classes.
Is there a way I can use the console to remove the display toggle as well as removed classes using javascript
Edit: I have uploaded the DOM changes which I want to remove.
Comments
Post a Comment