$.ajax(
{
type: "GET",
url: "/parts/reviews.html",
success: function ( html )
{
var el = document.createElement( 'html' );
el.innerHTML = html;
$( ".container" ).html( $( el ) );
$( "button.load-content" ).text( "Загружено" );
},
beforeSend: function ()
{
$( "button.load-content" ).text( "Загружаемся ..." );
}
}
);
}