Reputation: 3109
If I run this command in windows chrome it works fine, but on mobile safari it doesn't work at all (hidden div just appears, no fade effect):
jQuery(function($){$('#message').fadeIn("slow");});
Does anyone know why this isn't working? I'm using the default jquery library and this command is being executed inside a function after the document is loaded.
Upvotes: 0
Views: 1290
Reputation: 3109
I figured this issue out, I ended up putting the fader inside a settimeout to delay the execution a few seconds and it worked great for my loading screen.
Upvotes: 1