I want to load images only when they are loaded.
This is not working, since the class 'hidden' is removed before the images are loaded :
$(function(){
$('#nowplaying').load('nowplaying.php', function() {
$('#images').removeClass('hidden');
}
)});
What could I do ?
EDIT : here's my code :
In index.php I have :
<script type="text/javascript">
$(function(){
$('#nowplaying').load('nowplaying.php');
});
var auto_refresh = setInterval(
function ()
{
$('#nowplaying').load('nowplaying.php').fadeIn("slow");
}, 10000); // refresh every 10000 milliseconds
</script>
In nowplaying.php I have this div:
echo "<div id="images">;
foreach ($jpg_files as $file) {
if (file_exists($cover_path."\\\\".$file) && $file!="f.jpg") {
$file = urlencode($file);
echo "<a href=\"getimage.php?img=".$file."\" target=\"_blank\">
<img src=\"getimage.php?img=".$file."&p=".$cover_path."\" /></a>";
echo " ";
}
echo "</div>;
I want to show the images of div id #images only when they are loaded (I don't want the user to see the image making in the browser).
How to do it?
Can someone send a simple example of waitForImages ? It doesn't work at all for me.
EDIT 12-12-15 : This is working :
<img style="display:none;" src="big3.jpg">
<script type="text/javascript">
$('img').load(function(){
$(this).css({'display':'block'})
});
</script>
But this is not working, why? :
<div style="display:none;">
<img src="big3.jpg">
</div>
<script type="text/javascript">
$('div').load(function(){
$(this).css({'display':'block'})
});
</script>
Still don't know why. But this is working if img has normal src : Below the div :
<script type="text/javascript">
$(document).ready(function(){
$("div.images").hide();
$("div.images").find("img").load(function(){
$(this).closest("div.images").show();
});
});
</script>
NOW HERE'S MY BIG PROBLEM : My images src is calling a script :
<img src=\"getimage.php?img=".$file."\" />";
How can I make it work with this?
Thanks, Patrick