// ================================================================ // THIS IS START DOCUMENT FUNCTION // ================================================================ $( document ).ready(function(e) { $( '.items-cart' ).click( function() { dataArray = sessionStorage.getItem( 'cart' ); dataObj = ( dataArray !== null ) ? JSON.parse( dataArray ) : []; productID = $( this ).attr( 'data-id' ); objData = { product_id : productID, product_name : $( this ).find( '.product_name' ).html(), product_price : $( this ).find( '.product_price' ).html(), quantity : 1, sum : $( this ).find( '.product_price' ).html() }; //check duplicate // if has duplicate plus items // if not duplicate add new if( !CartID( productID ) ) { // add items dataObj.push( objData ); // Push item to the cart valData = JSON.stringify( dataObj ); sessionStorage.setItem( 'cart', valData); // add items orders is append addOrders( objData ); }else{ // plus items var quantity = $( '.sell-quantity' ).children( '.quantity-' + productID ).html(), quantity = parseInt( quantity ) + 1, product_price = $( '.sell-price' ).children( '.product_price-' + productID ).html(), sum = parseInt( product_price ) * parseInt( quantity ) ; $( '.sell-quantity' ).children( '.quantity-' + productID ).html( quantity ); $( '.sell-sum' ).children( '.sum-' + productID ).html( sum ); } }); }); // ================================================================ // END DOCUMENT FUNCTION // ================================================================
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง