Không có kết quả nào phù hợp với yêu cầu của bạn, vui lòng chọn lại
$(document).ready(function() {
$('.CurrencyLabel').click(function() {
var id = this.id;
var oldCurrency = $(this).attr('name');
var newCurrency = $(this).attr('title');
var money = $(this).attr('lang');
var priceUnit = $(this).attr('rel');
$(".CurencyLink" + id).removeClass('Active');
$(this).addClass('Active');
$.ajax({
url: "/san-giao-dich/change-currency",
data: ({oldCurrency : oldCurrency, newCurrency : newCurrency, money: money, priceUnit: priceUnit}),
async: true,
success: function(text) {
$("#MoneyDisplay" + id).text(text);
}
});
});
$('.AddToFavourite').click(function() {
alert('Bạn vui lòng đăng nhập trước khi lưu tài sản.');
document.location = "/dang-ky/login"
});
});