$(document).ready(function() { $(".txtsoluonggiam").click(function() { var txtSL = $(this).parent(".formmuahang").children(".txtsoluong"); var value = parseInt(txtSL.val(), 10); value = isNaN(value) ? 2 : value <= 1 ? 2 : value; value--; txtSL.val(value); }); $(".txtsoluongtang").click(function() { var txtSL = $(this).parent(".formmuahang").children(".txtsoluong"); var value = parseInt(txtSL.val(), 10); value = isNaN(value) ? 0 : value > 99 ? 98 : value; value++; txtSL.val(value); }); jQuery('.txtsoluong').keyup(function() { this.value = this.value.replace(/[^0-9\.]/g, ''); if (this.value == "") { this.value = 1; } }); }); $(document).ready(function() { $('.addtowishlist').click(function() { $(".thongbao").hide(); var id = $(this).closest(".addtocart").attr("data-ma"); var thongbao = $(".thongbao"); $.ajax({ type: 'POST', url: "/cart/addwishlist.asp?IDPart=" + id, async: true, success: function(responseText) { eval(responseText); $('#soluongwishlist').html(info.sl); $(".thongbao").show(); $(".thongbao").html("
") thongbao.delay(15000).hide(0); } }); var cart = $('.fa-heart-o'); var imgtodrag = $(this).parents('.wrap-sanpham').find("img"); if (imgtodrag) { var imgclone = imgtodrag.clone() .offset({ top: imgtodrag.offset().top, left: imgtodrag.offset().left }) .css({ 'opacity': '0.5', 'position': 'absolute', 'height': '150px', 'width': '150px', 'z-index': '100' }) .appendTo($('body')) .animate({ 'top': cart.offset().top + 10, 'left': cart.offset().left + 10, 'width': 75, 'height': 75 }, 1000, 'easeInOutExpo'); setTimeout(function() { cart.effect("shake", { times: 2 }, 200); }, 1500); imgclone.animate({ 'width': 0, 'height': 0 }, function() { $(this).detach() }); } }); $(".close").click(function() { $(this).parent(".thongbao").hide(); }); $('.wishlistcoban').click(function() { $.post("/html/wishlist/", function(data) { $(".resultwishlist").html(data); }); if ($(".resultwishlist").hasClass("show")) { $(".resultwishlist").removeClass("show"); $(".resultwishlist").addClass("hide"); } else { $(".resultwishlist").removeClass("hide"); $(".resultwishlist").addClass("show"); } }); }); $(document).ready(function() { $('.addtocart').click(function() { $(".thongbao").hide(); var id = $(this).closest(".addtocart").attr("data-ma"); var thongbao = $(".thongbao"); $.ajax({ type: 'POST', url: "/cart/addgiohang.asp?IDPart=" + id, async: true, success: function(responseText) { eval(responseText); $('.soluongreter').html(info.sl); $('.trigiareter').html(info.tongtien); $(".thongbao").show(); $(".thongbao").html("
") thongbao.delay(15000).hide(0); } }); var cart = $('.fa-shopping-cart'); var imgtodrag = $(this).parents('.wrap-sanpham').find("img"); if (imgtodrag) { var imgclone = imgtodrag.clone() .offset({ top: imgtodrag.offset().top, left: imgtodrag.offset().left }) .css({ 'opacity': '0.5', 'position': 'absolute', 'height': '150px', 'width': '150px', 'z-index': '100' }) .appendTo($('body')) .animate({ 'top': cart.offset().top + 10, 'left': cart.offset().left + 10, 'width': 75, 'height': 75 }, 1000, 'easeInOutExpo'); setTimeout(function() { cart.effect("shake", { times: 2 }, 200); }, 1500); imgclone.animate({ 'width': 0, 'height': 0 }, function() { $(this).detach() }); } }); $(".close").click(function() { $(this).parent(".thongbao").hide(); }); }); function printSoLuong() { $.get('/cart/soluong.asp', function(data) { $('.soluongreter").html(data); }); } function printGiaTri() { $.get('/cart/giatri.asp', function(data) { $('.trigiareter").html(data); }); } function printSoLuongWishList() { $.get('/cart/soluongwishlist.asp', function(data) { $('.soluongwishlist").html(data); }); } function LayChiTietSanPhamPhu(strclass, id) { $.ajax({ type: 'post', url: "/search/spphu.asp", data: "q=" + id, async: true, success: function(responseText) { $("." + strclass).html(responseText); } }); } $(document).ready(function() { $(".masanphamphu").change(function() { id = $(this).val(); LayChiTietSanPhamPhu("noidungsanphamphu", id); }); }); function incrementValue() { var value = parseInt(document.getElementById('number').value, 10); value = isNaN(value) ? 0 : value; value++; document.getElementById('number').value = value; } function incrementValue0() { var value = parseInt(document.getElementById('number').value, 10); value = isNaN(value) ? 0 : value; value--; document.getElementById('number').value = value; } function commaSeparateNumber(val) { while (/(\d+)(\d{3})/.test(val.toString())) { val = val.toString().replace(/(\d+)(\d{3})/, '$1' + ',' + '$2'); } return val; } $(document).ready(function() { printSoLuong(); printGiaTri(); printSoLuongWishList(); }); $(document).ready(function() { $(".khuvuctinlienquanbaiviet").each(function() { var id = $(this).attr("id"); gettin(id, $(this)); }); }); function gettin(id, obj) { $.ajax({ type: 'POST', url: "/html/tintuc/?id=" + id, async: true, success: function(responseText) { $(obj).html(responseText); } }); return false; } $(document).ready(function() { $(".loaddataajax").each(function() { var link = $(this).attr("data-src"); getboloc(link, $(this)); }); }); function getboloc(link, obj) { $.ajax({ type: 'POST', url: link, async: true, beforeSend: function() { $('.onload').show(); }, success: function(responseText) { $(obj).html(responseText); } }); return false; } $(document).ready(function() { $(window).scroll(function() { if ($(this).scrollTop()) { $('#toTop').fadeIn(); } else { $('#toTop').fadeOut(); } }); $("#toTop").click(function() { $("html, body").animate({scrollTop: 0}, 1000); }); });