I saw a few similar topics which did help but I have specific problem and didn\'t manage to solve it alone so if anyone can help out I would appreciate it
I want to
Depends in how you are hiding your div, diplay=none
is different of visibility=hidden
and the opacity=0
Visibility then use ...style.visibility='visible'
Display then use ...style.display='block'
(or others depends how
you setup ur css, inline, inline-block, flex...)
Opacity then use ...style.opacity='1';