TRZNICE: tusim, ze mi chybi uplne zaklady z PHP a toto je zrejme uplne lama dotaz. Mam nasledujici JS/jQuery:
// Update the number by shopping cart icon when item is added to the cart
function itemCount() {
$.ajax( {
url : "cart-count.php",
type : "POST",
data : "id=1",
success : function(msg) {
alert (msg); //or use data string to show something else
}
});
}
$(document).on('click', 'input.wpsc_buy_button', itemCount );
Ale jak se mam dostat k souboru cart-count.php, kdyz nechci pouzivat absolutni cestu k tomu souboru (napr. abych ji nemusel menit, az presunu ten web z dev na live)?