Files
site/res/assets/js/apps/ecommerce.js
2025-12-26 22:35:18 +08:00

14 lines
265 B
JavaScript

$(function () {
// Checkout
$(function () {
$(".billing-address").click(function () {
$(".billing-address-content").hide();
});
$(".billing-address").click(function () {
$(".payment-method-list").show();
});
});
});