$("#company-content").on("click",".firm-section",function(e){
e.preventDefault();
var href = $(this).attr('href');
getContent(href, true);
});
function getContent(url, addEntry) {
console.log("!");
$.ajax({
type: "POST",
url: "/s.php",
cache: false,
async: true,
data: {данные},
dataType: "html",
beforeSend: function(){
функция
},
success: function(data){
console.log("%");
}
});
}
При клике на элемент с классом .firm-section "!" - один раз, "%" - сразу два.