core/api/modules/my-order/mod.js

26 lines
787 B
JavaScript
Raw Normal View History

2022-12-11 13:55:49 +05:00
$(".razmer_foto").click(function(event) {
var foto_id = $(this).data("fotoid");
var foto_razmer = $(this).data("razmer");
alert(foto_id);
//return false;
var status = $(this).prop("checked");
if (status == true) {
$.ajax({
type: "POST",
url: "/act/foto_cart",
data: "act=update&foto_id=" + foto_id + "&foto_razmer=" + foto_razmer,
success: function(data) {
alert(data);
}
})
} else {
$.ajax({
type: "POST",
url: "/act/foto_cart",
data: "act=del&foto_id=" + foto_id + "&foto_razmer=" + foto_razmer,
success: function(data) {
alert(data);
}
})
}
})