1
I’m trying to change the css of a javascript loading.
The element is as display:none
and when I submit I change this element to display:block
and the same appears on the screen.
The point is that when tested on Mac Safari it just doesn’t work, I’ve tried changing the class, among other attempts, but it doesn’t work.
Someone’s been through it?
Follows the excerpt from the code in question: https://jsfiddle.net/pauloflesch/xpvt214o/24323/
Thanks in advance.
This shouldn’t happen there. Put your code in the question so we can evaluate it better, please. If possible create a Fiddle or a Stacksnippet.
– Phiter
Without code it becomes impossible to know the problem.
– Sam
@Phiter edited the question and added the code.
– PauloFlesch
Ever tried to replace
position:fixed
forposition:absolute
to see if it works?– hugocsl
@hugocsl tested and did not work.
– PauloFlesch