$('#add-to-basket-button').ajaxError(function() { alert("error") }); $('#add-to-basket-button').click(function(event) { event.preventDefault(); $('#basket-animation').show(); var $data = []; // var $form = $(this).parent().parent().parent().parent().find('form'); var $form=$('#tshirt_form'); $data.push( {name: 'appearance', value: $form.find('input[name=color]').val()}, {name: 'view', value: $form.find('input[name=view]').val()}, {name: 'article', value: $form.find('#articleId').val()}, {name: 'sellableId', value: $form.find('#sellableId').val()}, {name: 'ideaId', value: $form.find('#ideaId').val()}, {name: 'design', value: $form.find('#designId').val()}, {name: 'quantity', value: $form.find('#quantity').val()}, {name: 'size', value: $form.find('input[name=size]:checked').val()} ); if( $form.find('input[name=size]:checked').val() ) { // size is set } else { // error handling - no size is set alert('Please select a size'); $('#basket-animation').hide(); preventDefault(); } $.post('/ajax_shop.php?l=en&shop=266497', $data, function(json) { if ( json.error ) { alert("error #1312"); } else { // POP AFTER ADDED TO BASKET $.fancybox.open({ // FancyBox 3 src: '#pop-after-added-to-basket', animationEffect: "fade", animationDuration: 350, transitionEffect: "fade", transitionDuration: 350, showCloseButton : true, hideScrollbar: true, autoFocus: true, trapFocus: true, width : '550px', height : '700px' }); $('#basket-animation').hide(); $('a.basketUrlHolder').attr('href', 'https://www.no-gods-no-masters.com/basket.php?' + json.c.l); $('.basket-counter').text(json.c.q); } },'json'); return false; }); $.get('/ajax_shop.php?l=en&shop=266497&basket', function(json) { $('a.basketUrlHolder').attr('href', 'https://www.no-gods-no-masters.com/basket.php?' + json.c.l); $('.basket-counter').text(json.c.q); $('#view-more-products').attr('href', 'https://www.no-gods-no-masters.com/custom_tshirt.php?design=&showproducttypes=1&' + json.c.l ); $('#tablomat-new-window').attr('href', 'https://www.no-gods-no-masters.com/custom_tshirt.php?producttype=&' + json.c.l ); $('.tablomat-index').attr('href', 'https://www.no-gods-no-masters.com/custom_tshirt.php?producttype=&' + json.c.l ); $('#tablomat-sidebar').attr('href', 'https://www.no-gods-no-masters.com/custom_tshirt.php?' + json.c.l ); /*$('#customize-this-product').attr('href', 'https://www.no-gods-no-masters.com/custom_tshirt.php?productcolor=&noheader=1&p=&fancybox=1&' + json.c.l ); */ $('#customize-this-product-type').attr('href', 'https://www.no-gods-no-masters.com/custom_tshirt.php?noheader=1&producttype=&' + json.c.l ); },'json');