max1985,
$(function() {
var btn = $("#getContent"),
div = $("#divContent"),
title = ["Развернуть", "Скрыть", "Получаем контент"];
btn.on("click", function(event) {
event.preventDefault();
var text = div.text().trim();
if (text) {
text = title[+div.is(":hidden")];
div.slideToggle(300);
btn.text(text)
} 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]);
}
})
}
})
});