I've got the following problem - after user clicks on a thumbnail image, bigger image is loaded (with lazy loading) and opens up. Before loading, bigger image looks in code like this:
<img width="663" height="845" class="big" data-original="real/path/to/image" src="path/to/empty/small/picture">
When user clicks on a thumbnail image, following code is executed:
$("img.thumb").click(function()
{
var $cont = $(this).siblings('.item-content').children('.big');
$cont.attr('src', $cont.attr("data-original"));
setTimeout(function(){
$cont.css({'height': 'auto', 'width': '100%'});
}, 600);
});
Each big image has to have CSS "height" set to "auto", and "width" set to "100%", because I am making a responsive/fluid layout. Above code brings to "src" attribute value from "data-original" attribute. But "height: auto", and "width:100%" are set in this example 600ms after attributes replacing. This doesn't work, because I am using Isotope jQuery plugin (http://isotope.metafizzy.co/) for this - and this plugin needs the real width and height of the element to position the grid properly. When "height: auto", and "width:100%" are set during the loading of an image, plugin gets lost, and makes wrong positions of elements.
So how to give those 2 CSS properties after the image has loaded?
$container.isotope('reLayout');- which relayouts the whole grid. So it would work, if I could execute it after the image is loaded. The problem is that I don't know how to define when the image has loaded. – Irminsul Sep 17 '12 at 0:51