Создал галерею. Не могу понять где ошибка. Событие после комментария напрочь отказывается выполняться и удалять div.
$(document).ready(function(){
$('.article img').click(function(){
$('body').append('<div id="img_container"><img src="'+$(this).attr('src')+'"></div>');
$('#img_container').css({
'width':'500px',
'height':'500px',
'position':'fixed',
'left':'50%',
'top':'50%',
'margin':'-250px 0px 0px -250px',
'background':'#fff',
'border-radius':'2px',
'padding':'10px',
'display':'none'
});
$('#img_container img').css({
'height':'500px',
'display':'none',
'cursor':'pointer'
});
$('#img_container').fadeIn(700).animate({'width':$('#img_container img').width(), 'margin':'-250px 0px 0px -'+$('#img_container img').width()/2},700);
$('#img_container img').delay(1500).fadeIn(700);
});
//Дальше не работает
$('#img_container').click(function(){
$('#img_container').remove();
});
});