$('.againCell').click(function(){
$.ajax({
type: "GET",
url: "/content2.html",
dataType: "html",
beforeSend: function() {
$('.ajax_here').html('<span id="loading_me">Загружаю..</span>');
},
success:
function(html){
$(".ajax_here").html(html);
}
});
return false;
});