I have the following code, which loops to get all images in a table then appends them to #featured which is then appended to #wrapper. The problem is after everything is appended to #wrapper, images have no dimensions and for that reason non of them show. It's like having 0px width and height for images. How do i overcome this size issue.
var featured = '<div id="featured"></div>';
$('#imageTable tbody tr td img').each(function(){
$(featured).append('<img src='+$(this).attr("src")+' />');
});
$(featured).appendTo('#wrapper');
I tried to solve this problem by doing
$(featured).load(function(){
$(this).appendTo('#wrapper');
});
But that doesn't work.