max1985,
$(function() {
var btn = $("#getContent"),
div = $("#divContent"),
title = ["Развернуть", "Скрыть ", "Получаем контент"];
btn.on("click", function(event) {
event.preventDefault();
var text = div.text().trim();
if (text) {
var hidden = div.is(":hidden")
text = title[+hidden];
div.slideToggle(300);
btn.text(text);
hidden && btn.append('<i class="fa fa-chevron-up" aria-hidden="true"></i>')
} else if (text != title[2]) {
div.text(title[2]);
$.ajax({
url: "/katprod/",
type: "GET",
cache: false,
success: function(html) {
div.html(html);
btn.text(title[1]).append('<i class="fa fa-chevron-up" aria-hidden="true"></i>');
}
})
}
})
});