I need to remove the following from a div's styling using DOM manipulation:
transform: translateY(-50%)
The div has the following class name: 'jsx-4186082927'
Please can someone help me with how to remove the transform CSS styling using javascript or jquery?
edit: I have tried
window.parent.document.getElementsByClassName("jsx-4186082927")[0].removeAttribute("style", "transform");
but hasn't work