Because this isn't a jQuery object, you have to either turn it into a jQuery object, then search within it using find (or children, if you only want direct children). Or, alternatively, supply it as the context (starting point) for a selector.
$(document).ready(function(){
$("#container").click(function(){
$(this).find('img').fadeOut(function() { $(this).remove();});
});
});
or
$(document).ready(function(){
$("#container").click(function(){
$('img',this).fadeOut(function() { $(this).remove();});
});
});
Note that this will remove only the image after it has been faded out. If you want to remove the entire DIV you'll need to store a reference to it internally and use it in the animation callback.
$(document).ready(function(){
$("#container").click(function(){
var $container = $(this);
$container.find('img').fadeOut(function() { $container.remove();});
});
});