Subversion Repositories wpShopGermany4

Rev

Rev 5583 | Rev 6165 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed


    function wpsg_mod_productvariants_reload(event)
    {
        
        var product_index = jQuery(event.target).parents('.wpsg_mod_productvariants_product_wrap').attr('wpsg-productindex');
                 
        //jQuery('#wpsg_produktform_' + product_index).append('<div class="wpsg_product_layer"><img src="' + wpsg_ajax.img_ajaxloading + '" alt="' + wpsg_ajax.label_pleasewait + '" /></div>');
 
                jQuery.ajax( {
                        'url': wpsg_ajax.ajaxurl,
                        'method': 'get',
                        'data': {
                                'action': 'wpsg_productvariants_switch',
                                'wpsg_post_id': jQuery('#wpsg_produktform_' + product_index + ' input[name="wpsg_post_id"]').val(),
                                'form_data': jQuery('#wpsg_produktform_' + product_index).serialize(),                          
                                'product_index': product_index
                        },
                        'success': function(data) {
                 
                                jQuery('#wpsg_produktform_' + product_index).replaceWith(data);
                                
                        }
                } );
        
    } // function wpsg_mod_productvariants_reload(event)