jquery - Fadein div once everything is loaded -
i'm using simple load fill div content using fadein callback. have secondary fadein images cut down pop in.
i'd remove pop in exclusively , have page fadein 1 time images have been loaded, loads 1 piece. how accomplish this?
$("#content").load("pages/test.htm", function () { $("#page").fadeto(250, 1, "swing"); });
then on loaded page
$('img').load(function (e) { $('img').fadein(); });
how can accomplish this?
this kind of confusing question wouldn't next work?
$('img').load(function() { $("#page").fadeto(250,1,'swing'); });
jquery html fadein
No comments:
Post a Comment