i have a question how to load images with a small indicator
i use the following javascript:
$(document).ready(function(){
$('td > #artwork-link').click(function(e){
e.preventDefault();
$('#artwork_container').load('../php/artwork_ajax.php?img_id='+$(this).attr('name'));
//$('#artwork_pic').attr(src:$(this).attr('name'));
return false;
});
}
);
the php returns something like <img src="abc.jpg" />
i can also patch the img src attribute as seen in the script
but how can i make a load-indicator to load the pictures
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/