I have been trying to get a loaded element to fade in on Safari for about 2 hours now to no avail. Anyone aware of a fix for this? Here is my code:

$('#badgeHolder').fadeTo('slow',0);
		
$('#badgeHolder').load('somePage',function(){
	$('#badgeHolder').fadeTo('slow',1);
});

I have also tried:

$('#badgeHolder').load('somePage').hide().fadeIn('slow');

Either one of the above works in every browser but safari. Please help! Thanks in advance.

Oops. It was another issue in my script that was making it not work.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.