Совет на заметку: Использовать для отправки формы не сериализированную строку, а объект FormData.
Тут подробнее: https://learn.javascript.ru/xhr-forms
window.globalCounter = 0;
setInterval(function(){
if(window.globalCounter == 0){
// Выполнять запросы
}
}, 1500);
$(".tButton").click(function(){
var showBlockClass = $(this).data("price");
$(".bg3").fadeOut(0);
$("."+showBlockClass).fadeIn(400);
});
var th = $(this);
$(th.data('div')).show();