Boutique sur Roussette

Splash Distribution

splash-distribution.com — catalogue indexé par le comparateur de prix Roussette

Roussette a déjà découvert 24 produits de Splash Distribution. Les données scrapées peuvent être incomplètes ou périmées — déposez votre flux Google Shopping pour passer en Premium : prix exacts, priorité catalogue, stats de clics — 100 % gratuit, sans CPC.

Vous êtes le propriétaire de Splash Distribution ((splash-distribution.com) ? Vérifiez votre domaine (DNS, fichier ou balise meta), puis déposez votre flux en quelques minutes.

Réclamer ma boutique

Catégories détectées : Appareils photo, caméras et instruments d'optique > Accessoires pour appareils photo, caméras et instruments d'optique > Pièces et accessoires pour appareils photo et caméras > Supports de flash Appareils électroniques > Accessoires électroniques > Alimentation > Accessoires pour batteries > Chargeurs de batteries de caméras

Produits Splash Distribution déjà indexés

  • 0) {
                productname = object.find('[itemprop="name"]').text();
            } else if (object.find('.product-title').length > 0) {
                productname = object.find('.product-title').first().text();
            } else {
                productname = object.find('h1').first().text();
            }
            id_product = getIdProduct(object);
            if (typeof object.data('idProductAttribute') !== 'undefined') {
                id_product_attribute = object.data('idProductAttribute');
            }
            values = {
                content_name : productname,
                
                                content_category: 'Accueil',
                                
                value: iv,
                currency: 'TND',
    
                    content_ids : ['' + id_product + (id_product_attribute > 0 ? '' + id_product_attribute : '')],
                content_type: 'product',
            
            };
            return values;
        }

        function getPriceRecursive(tries, object)
        {
            var res = '';
            if (object.parent().find('[itemprop="price"]').length > 0) {
                res = getPriceFromElement(object.parent().find('[itemprop="price"]'));
            } else if (object.parent().find('.price:eq(0)').length > 0) {
                res = getPriceFromElement(object.parent().find('.price:eq(0)'));
            } else {
                if (tries > 0) {
                    res = getPriceRecursive(tries-1, object.parent());
                } else {
                    return false;
                }
            }
            if (res != '') {
                return res;
            }
        }
        function getNameRecursive(tries, object)
        {
            var res = '';
            if (object.parent().find('.product-name, itemprop[name]').length > 0) {
                res = object.parent().find('.product-name, itemprop[name]').first().text().trim();
            } else {
                if (tries > 0) {
                    res = getNameRecursive(tries-1, object.parent());
                } else {
                    return false;
                }
            }
            if (res != '') {
                return res;
            }
        }
        function getIdProduct(object)
        {
            if (typeof object.data('id_product') !== 'undefined') {
                return object.data('id_product');
            } else if (typeof object.find('button').data('idProduct') !== 'undefined') {
                return object.find('button').data('idProduct');
            } else if (object.find('[name="id_product"]').length > 0) {
                return object.find('input[name="id_product"]').first().val();
            } else if (object.find('input#product_page_product_id').length > 0) {
                return object.find('input#product_page_product_id').val();
            } else if (object.closest('form').length > 0 && object.closest('form').find('input[name="id_product"]').length > 0) {
                return object.closest('form').find('input[name="id_product"]').val();
            } else {
                console.log('Could not find the product ID in the products list, contact the developer to ask for further assistance');
                return '';
            }
        }
        function getpixelvalue(object) {
            var productname = '';
            var iv = getProductPrice(object);
            if (typeof object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title') != 'undefined') {
                productname = object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title');
            } else if ($("#bigpic").length > 0) {
                productname = $("#bigpic").attr('title');
            } else if (object.parents('.row').first().find('h1').length > 0) {
                productname = object.parents('.row').first().find('h1').first().html();
            } else {
                productname = object.parents('.primary_block').find('h1').first().html();
                object = object.parents('.primary_block');
            }
            
                                    var id_product = 0;
            if ($("#buy_block").find("input[name=id_product]:eq(0)").length > 0) {
                id_product = $("#buy_block").find("input[name=id_product]:eq(0)").val()
            } else if ($("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").length  > 0) {
                id_product = $("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").val();
            } else {
                console.log('Could not locate the Product ID: Contact the module developer for assistenace');
            }
                        
            values = {
                content_name : productname,
                
                                content_category: 'Accueil',
                                
                value: iv,
                currency: 'TND',
      
                            content_type : 'product',
            content_ids : [id_product],
                        
            };
            return values;
        }
        function getProductPrice(object) {
            var main = '';
            if ($('.col-product-info').length > 0) {
                main = $('.col-product-info');
            } else if ($('#main').length > 0) {
                main = $('#main')
            } else if ($('#center_column').length > 0) {
                main = $('#center_column');
            }
            if (main != '') {
                var selectors = ['#our_price_display', '[itemprop=price]', '.product-price', '.pb-right-column', '.product-information'];
                var l = selectors.length;
                for (var i = 0; i  0) {
                        return getPriceFromElement($(selectors[i]));
                    }
                }
            }
        }
        function getPriceFromElement(e)
        {
            if (typeof e.attr('content') !== 'undefined') {
                return getPriceFromContent(e.attr('content'));
            } else {
                iv = e.text().replace(/\D/g,'');
                return formatPrice(iv);
            }
        }
        function getPriceFromContent(e)
        {
            /*if (e.indexOf('.') !== -1) {
                return parseFloat(e).toFixed(pp_price_precision);
            } else {*/
                return parseFloat(e);
            //}
        }
        function formatPrice(e)
        {
            if (typeof pp_price_precision === 'undefined') {
                var pp_price_precision = 2;
            }
            if (e.indexOf('.') === -1) {
                return parseFloat(e.slice(0,-(pp_price_precision))+'.'+ e.slice((e.slice(0,-(pp_price_precision)).length)));
            } else {
                return parseFloat(e);
            }
        }
        function gup( name, url ) {
            if (!url) url = location.href;
            name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
            var regexS = "[\\?&]"+name+"=([^&#]*)";
            var regex = new RegExp( regexS );
            var results = regex.exec( url );
            return results == null ? null : results[1];
        }
        function init_cust_add_to_cart(tries)
        {
            
            if ($('').length > 0 || tries == 0) {
                $(document).on('click mousedown', '', function() {
                    console.log('Custom Add To Cart clicked');
                    pixelCall(getpixelvalueslist($(this)));
                });
            
            } else {
                setTimeout(function() { init_cust_add_to_cart(tries-1) }, 250);
            }
        }
    }
}
});

    0) { productname = object.find('[itemprop="name"]').text(); } else if (object.find('.product-title').length > 0) { productname = object.find('.product-title').first().text(); } else { productname = object.find('h1').first().text(); } id_product = getIdProduct(object); if (typeof object.data('idProductAttribute') !== 'undefined') { id_product_attribute = object.data('idProductAttribute'); } values = { content_name : productname, content_category: 'Accueil', value: iv, currency: 'TND', content_ids : ['' + id_product + (id_product_attribute > 0 ? '' + id_product_attribute : '')], content_type: 'product', }; return values; } function getPriceRecursive(tries, object) { var res = ''; if (object.parent().find('[itemprop="price"]').length > 0) { res = getPriceFromElement(object.parent().find('[itemprop="price"]')); } else if (object.parent().find('.price:eq(0)').length > 0) { res = getPriceFromElement(object.parent().find('.price:eq(0)')); } else { if (tries > 0) { res = getPriceRecursive(tries-1, object.parent()); } else { return false; } } if (res != '') { return res; } } function getNameRecursive(tries, object) { var res = ''; if (object.parent().find('.product-name, itemprop[name]').length > 0) { res = object.parent().find('.product-name, itemprop[name]').first().text().trim(); } else { if (tries > 0) { res = getNameRecursive(tries-1, object.parent()); } else { return false; } } if (res != '') { return res; } } function getIdProduct(object) { if (typeof object.data('id_product') !== 'undefined') { return object.data('id_product'); } else if (typeof object.find('button').data('idProduct') !== 'undefined') { return object.find('button').data('idProduct'); } else if (object.find('[name="id_product"]').length > 0) { return object.find('input[name="id_product"]').first().val(); } else if (object.find('input#product_page_product_id').length > 0) { return object.find('input#product_page_product_id').val(); } else if (object.closest('form').length > 0 && object.closest('form').find('input[name="id_product"]').length > 0) { return object.closest('form').find('input[name="id_product"]').val(); } else { console.log('Could not find the product ID in the products list, contact the developer to ask for further assistance'); return ''; } } function getpixelvalue(object) { var productname = ''; var iv = getProductPrice(object); if (typeof object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title') != 'undefined') { productname = object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title'); } else if ($("#bigpic").length > 0) { productname = $("#bigpic").attr('title'); } else if (object.parents('.row').first().find('h1').length > 0) { productname = object.parents('.row').first().find('h1').first().html(); } else { productname = object.parents('.primary_block').find('h1').first().html(); object = object.parents('.primary_block'); } var id_product = 0; if ($("#buy_block").find("input[name=id_product]:eq(0)").length > 0) { id_product = $("#buy_block").find("input[name=id_product]:eq(0)").val() } else if ($("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").length > 0) { id_product = $("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").val(); } else { console.log('Could not locate the Product ID: Contact the module developer for assistenace'); } values = { content_name : productname, content_category: 'Accueil', value: iv, currency: 'TND', content_type : 'product', content_ids : [id_product], }; return values; } function getProductPrice(object) { var main = ''; if ($('.col-product-info').length > 0) { main = $('.col-product-info'); } else if ($('#main').length > 0) { main = $('#main') } else if ($('#center_column').length > 0) { main = $('#center_column'); } if (main != '') { var selectors = ['#our_price_display', '[itemprop=price]', '.product-price', '.pb-right-column', '.product-information']; var l = selectors.length; for (var i = 0; i 0) { return getPriceFromElement($(selectors[i])); } } } } function getPriceFromElement(e) { if (typeof e.attr('content') !== 'undefined') { return getPriceFromContent(e.attr('content')); } else { iv = e.text().replace(/\D/g,''); return formatPrice(iv); } } function getPriceFromContent(e) { /*if (e.indexOf('.') !== -1) { return parseFloat(e).toFixed(pp_price_precision); } else {*/ return parseFloat(e); //} } function formatPrice(e) { if (typeof pp_price_precision === 'undefined') { var pp_price_precision = 2; } if (e.indexOf('.') === -1) { return parseFloat(e.slice(0,-(pp_price_precision))+'.'+ e.slice((e.slice(0,-(pp_price_precision)).length))); } else { return parseFloat(e); } } function gup( name, url ) { if (!url) url = location.href; name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); var regexS = "[\\?&]"+name+"=([^&#]*)"; var regex = new RegExp( regexS ); var results = regex.exec( url ); return results == null ? null : results[1]; } function init_cust_add_to_cart(tries) { if ($('').length > 0 || tries == 0) { $(document).on('click mousedown', '', function() { console.log('Custom Add To Cart clicked'); pixelCall(getpixelvalueslist($(this))); }); } else { setTimeout(function() { init_cust_add_to_cart(tries-1) }, 250); } } } } });

    Splash Distribution

    1850.0 €

  • ZOOM SCU-40-ETUI UNIVERSEL

  • 0) {
                productname = object.find('[itemprop="name"]').text();
            } else if (object.find('.product-title').length > 0) {
                productname = object.find('.product-title').first().text();
            } else {
                productname = object.find('h1').first().text();
            }
            id_product = getIdProduct(object);
            if (typeof object.data('idProductAttribute') !== 'undefined') {
                id_product_attribute = object.data('idProductAttribute');
            }
            values = {
                content_name : productname,
                
                                content_category: 'Accueil',
                                
                value: iv,
                currency: 'TND',
    
                    content_ids : ['' + id_product + (id_product_attribute > 0 ? '' + id_product_attribute : '')],
                content_type: 'product',
            
            };
            return values;
        }

        function getPriceRecursive(tries, object)
        {
            var res = '';
            if (object.parent().find('[itemprop="price"]').length > 0) {
                res = getPriceFromElement(object.parent().find('[itemprop="price"]'));
            } else if (object.parent().find('.price:eq(0)').length > 0) {
                res = getPriceFromElement(object.parent().find('.price:eq(0)'));
            } else {
                if (tries > 0) {
                    res = getPriceRecursive(tries-1, object.parent());
                } else {
                    return false;
                }
            }
            if (res != '') {
                return res;
            }
        }
        function getNameRecursive(tries, object)
        {
            var res = '';
            if (object.parent().find('.product-name, itemprop[name]').length > 0) {
                res = object.parent().find('.product-name, itemprop[name]').first().text().trim();
            } else {
                if (tries > 0) {
                    res = getNameRecursive(tries-1, object.parent());
                } else {
                    return false;
                }
            }
            if (res != '') {
                return res;
            }
        }
        function getIdProduct(object)
        {
            if (typeof object.data('id_product') !== 'undefined') {
                return object.data('id_product');
            } else if (typeof object.find('button').data('idProduct') !== 'undefined') {
                return object.find('button').data('idProduct');
            } else if (object.find('[name="id_product"]').length > 0) {
                return object.find('input[name="id_product"]').first().val();
            } else if (object.find('input#product_page_product_id').length > 0) {
                return object.find('input#product_page_product_id').val();
            } else if (object.closest('form').length > 0 && object.closest('form').find('input[name="id_product"]').length > 0) {
                return object.closest('form').find('input[name="id_product"]').val();
            } else {
                console.log('Could not find the product ID in the products list, contact the developer to ask for further assistance');
                return '';
            }
        }
        function getpixelvalue(object) {
            var productname = '';
            var iv = getProductPrice(object);
            if (typeof object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title') != 'undefined') {
                productname = object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title');
            } else if ($("#bigpic").length > 0) {
                productname = $("#bigpic").attr('title');
            } else if (object.parents('.row').first().find('h1').length > 0) {
                productname = object.parents('.row').first().find('h1').first().html();
            } else {
                productname = object.parents('.primary_block').find('h1').first().html();
                object = object.parents('.primary_block');
            }
            
                                    var id_product = 0;
            if ($("#buy_block").find("input[name=id_product]:eq(0)").length > 0) {
                id_product = $("#buy_block").find("input[name=id_product]:eq(0)").val()
            } else if ($("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").length  > 0) {
                id_product = $("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").val();
            } else {
                console.log('Could not locate the Product ID: Contact the module developer for assistenace');
            }
                        
            values = {
                content_name : productname,
                
                                content_category: 'Accueil',
                                
                value: iv,
                currency: 'TND',
      
                            content_type : 'product',
            content_ids : [id_product],
                        
            };
            return values;
        }
        function getProductPrice(object) {
            var main = '';
            if ($('.col-product-info').length > 0) {
                main = $('.col-product-info');
            } else if ($('#main').length > 0) {
                main = $('#main')
            } else if ($('#center_column').length > 0) {
                main = $('#center_column');
            }
            if (main != '') {
                var selectors = ['#our_price_display', '[itemprop=price]', '.product-price', '.pb-right-column', '.product-information'];
                var l = selectors.length;
                for (var i = 0; i  0) {
                        return getPriceFromElement($(selectors[i]));
                    }
                }
            }
        }
        function getPriceFromElement(e)
        {
            if (typeof e.attr('content') !== 'undefined') {
                return getPriceFromContent(e.attr('content'));
            } else {
                iv = e.text().replace(/\D/g,'');
                return formatPrice(iv);
            }
        }
        function getPriceFromContent(e)
        {
            /*if (e.indexOf('.') !== -1) {
                return parseFloat(e).toFixed(pp_price_precision);
            } else {*/
                return parseFloat(e);
            //}
        }
        function formatPrice(e)
        {
            if (typeof pp_price_precision === 'undefined') {
                var pp_price_precision = 2;
            }
            if (e.indexOf('.') === -1) {
                return parseFloat(e.slice(0,-(pp_price_precision))+'.'+ e.slice((e.slice(0,-(pp_price_precision)).length)));
            } else {
                return parseFloat(e);
            }
        }
        function gup( name, url ) {
            if (!url) url = location.href;
            name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
            var regexS = "[\\?&]"+name+"=([^&#]*)";
            var regex = new RegExp( regexS );
            var results = regex.exec( url );
            return results == null ? null : results[1];
        }
        function init_cust_add_to_cart(tries)
        {
            
            if ($('').length > 0 || tries == 0) {
                $(document).on('click mousedown', '', function() {
                    console.log('Custom Add To Cart clicked');
                    pixelCall(getpixelvalueslist($(this)));
                });
            
            } else {
                setTimeout(function() { init_cust_add_to_cart(tries-1) }, 250);
            }
        }
    }
}
});

    0) { productname = object.find('[itemprop="name"]').text(); } else if (object.find('.product-title').length > 0) { productname = object.find('.product-title').first().text(); } else { productname = object.find('h1').first().text(); } id_product = getIdProduct(object); if (typeof object.data('idProductAttribute') !== 'undefined') { id_product_attribute = object.data('idProductAttribute'); } values = { content_name : productname, content_category: 'Accueil', value: iv, currency: 'TND', content_ids : ['' + id_product + (id_product_attribute > 0 ? '' + id_product_attribute : '')], content_type: 'product', }; return values; } function getPriceRecursive(tries, object) { var res = ''; if (object.parent().find('[itemprop="price"]').length > 0) { res = getPriceFromElement(object.parent().find('[itemprop="price"]')); } else if (object.parent().find('.price:eq(0)').length > 0) { res = getPriceFromElement(object.parent().find('.price:eq(0)')); } else { if (tries > 0) { res = getPriceRecursive(tries-1, object.parent()); } else { return false; } } if (res != '') { return res; } } function getNameRecursive(tries, object) { var res = ''; if (object.parent().find('.product-name, itemprop[name]').length > 0) { res = object.parent().find('.product-name, itemprop[name]').first().text().trim(); } else { if (tries > 0) { res = getNameRecursive(tries-1, object.parent()); } else { return false; } } if (res != '') { return res; } } function getIdProduct(object) { if (typeof object.data('id_product') !== 'undefined') { return object.data('id_product'); } else if (typeof object.find('button').data('idProduct') !== 'undefined') { return object.find('button').data('idProduct'); } else if (object.find('[name="id_product"]').length > 0) { return object.find('input[name="id_product"]').first().val(); } else if (object.find('input#product_page_product_id').length > 0) { return object.find('input#product_page_product_id').val(); } else if (object.closest('form').length > 0 && object.closest('form').find('input[name="id_product"]').length > 0) { return object.closest('form').find('input[name="id_product"]').val(); } else { console.log('Could not find the product ID in the products list, contact the developer to ask for further assistance'); return ''; } } function getpixelvalue(object) { var productname = ''; var iv = getProductPrice(object); if (typeof object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title') != 'undefined') { productname = object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title'); } else if ($("#bigpic").length > 0) { productname = $("#bigpic").attr('title'); } else if (object.parents('.row').first().find('h1').length > 0) { productname = object.parents('.row').first().find('h1').first().html(); } else { productname = object.parents('.primary_block').find('h1').first().html(); object = object.parents('.primary_block'); } var id_product = 0; if ($("#buy_block").find("input[name=id_product]:eq(0)").length > 0) { id_product = $("#buy_block").find("input[name=id_product]:eq(0)").val() } else if ($("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").length > 0) { id_product = $("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").val(); } else { console.log('Could not locate the Product ID: Contact the module developer for assistenace'); } values = { content_name : productname, content_category: 'Accueil', value: iv, currency: 'TND', content_type : 'product', content_ids : [id_product], }; return values; } function getProductPrice(object) { var main = ''; if ($('.col-product-info').length > 0) { main = $('.col-product-info'); } else if ($('#main').length > 0) { main = $('#main') } else if ($('#center_column').length > 0) { main = $('#center_column'); } if (main != '') { var selectors = ['#our_price_display', '[itemprop=price]', '.product-price', '.pb-right-column', '.product-information']; var l = selectors.length; for (var i = 0; i 0) { return getPriceFromElement($(selectors[i])); } } } } function getPriceFromElement(e) { if (typeof e.attr('content') !== 'undefined') { return getPriceFromContent(e.attr('content')); } else { iv = e.text().replace(/\D/g,''); return formatPrice(iv); } } function getPriceFromContent(e) { /*if (e.indexOf('.') !== -1) { return parseFloat(e).toFixed(pp_price_precision); } else {*/ return parseFloat(e); //} } function formatPrice(e) { if (typeof pp_price_precision === 'undefined') { var pp_price_precision = 2; } if (e.indexOf('.') === -1) { return parseFloat(e.slice(0,-(pp_price_precision))+'.'+ e.slice((e.slice(0,-(pp_price_precision)).length))); } else { return parseFloat(e); } } function gup( name, url ) { if (!url) url = location.href; name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); var regexS = "[\\?&]"+name+"=([^&#]*)"; var regex = new RegExp( regexS ); var results = regex.exec( url ); return results == null ? null : results[1]; } function init_cust_add_to_cart(tries) { if ($('').length > 0 || tries == 0) { $(document).on('click mousedown', '', function() { console.log('Custom Add To Cart clicked'); pixelCall(getpixelvalueslist($(this))); }); } else { setTimeout(function() { init_cust_add_to_cart(tries-1) }, 250); } } } } });

    Splash Distribution

    1050.57 €

  • 0) {
                productname = object.find('[itemprop="name"]').text();
            } else if (object.find('.product-title').length > 0) {
                productname = object.find('.product-title').first().text();
            } else {
                productname = object.find('h1').first().text();
            }
            id_product = getIdProduct(object);
            if (typeof object.data('idProductAttribute') !== 'undefined') {
                id_product_attribute = object.data('idProductAttribute');
            }
            values = {
                content_name : productname,
                
                                content_category: 'Accueil',
                                
                value: iv,
                currency: 'TND',
    
                    content_ids : ['' + id_product + (id_product_attribute > 0 ? '' + id_product_attribute : '')],
                content_type: 'product',
            
            };
            return values;
        }

        function getPriceRecursive(tries, object)
        {
            var res = '';
            if (object.parent().find('[itemprop="price"]').length > 0) {
                res = getPriceFromElement(object.parent().find('[itemprop="price"]'));
            } else if (object.parent().find('.price:eq(0)').length > 0) {
                res = getPriceFromElement(object.parent().find('.price:eq(0)'));
            } else {
                if (tries > 0) {
                    res = getPriceRecursive(tries-1, object.parent());
                } else {
                    return false;
                }
            }
            if (res != '') {
                return res;
            }
        }
        function getNameRecursive(tries, object)
        {
            var res = '';
            if (object.parent().find('.product-name, itemprop[name]').length > 0) {
                res = object.parent().find('.product-name, itemprop[name]').first().text().trim();
            } else {
                if (tries > 0) {
                    res = getNameRecursive(tries-1, object.parent());
                } else {
                    return false;
                }
            }
            if (res != '') {
                return res;
            }
        }
        function getIdProduct(object)
        {
            if (typeof object.data('id_product') !== 'undefined') {
                return object.data('id_product');
            } else if (typeof object.find('button').data('idProduct') !== 'undefined') {
                return object.find('button').data('idProduct');
            } else if (object.find('[name="id_product"]').length > 0) {
                return object.find('input[name="id_product"]').first().val();
            } else if (object.find('input#product_page_product_id').length > 0) {
                return object.find('input#product_page_product_id').val();
            } else if (object.closest('form').length > 0 && object.closest('form').find('input[name="id_product"]').length > 0) {
                return object.closest('form').find('input[name="id_product"]').val();
            } else {
                console.log('Could not find the product ID in the products list, contact the developer to ask for further assistance');
                return '';
            }
        }
        function getpixelvalue(object) {
            var productname = '';
            var iv = getProductPrice(object);
            if (typeof object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title') != 'undefined') {
                productname = object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title');
            } else if ($("#bigpic").length > 0) {
                productname = $("#bigpic").attr('title');
            } else if (object.parents('.row').first().find('h1').length > 0) {
                productname = object.parents('.row').first().find('h1').first().html();
            } else {
                productname = object.parents('.primary_block').find('h1').first().html();
                object = object.parents('.primary_block');
            }
            
                                    var id_product = 0;
            if ($("#buy_block").find("input[name=id_product]:eq(0)").length > 0) {
                id_product = $("#buy_block").find("input[name=id_product]:eq(0)").val()
            } else if ($("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").length  > 0) {
                id_product = $("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").val();
            } else {
                console.log('Could not locate the Product ID: Contact the module developer for assistenace');
            }
                        
            values = {
                content_name : productname,
                
                                content_category: 'Accueil',
                                
                value: iv,
                currency: 'TND',
      
                            content_type : 'product',
            content_ids : [id_product],
                        
            };
            return values;
        }
        function getProductPrice(object) {
            var main = '';
            if ($('.col-product-info').length > 0) {
                main = $('.col-product-info');
            } else if ($('#main').length > 0) {
                main = $('#main')
            } else if ($('#center_column').length > 0) {
                main = $('#center_column');
            }
            if (main != '') {
                var selectors = ['#our_price_display', '[itemprop=price]', '.product-price', '.pb-right-column', '.product-information'];
                var l = selectors.length;
                for (var i = 0; i  0) {
                        return getPriceFromElement($(selectors[i]));
                    }
                }
            }
        }
        function getPriceFromElement(e)
        {
            if (typeof e.attr('content') !== 'undefined') {
                return getPriceFromContent(e.attr('content'));
            } else {
                iv = e.text().replace(/\D/g,'');
                return formatPrice(iv);
            }
        }
        function getPriceFromContent(e)
        {
            /*if (e.indexOf('.') !== -1) {
                return parseFloat(e).toFixed(pp_price_precision);
            } else {*/
                return parseFloat(e);
            //}
        }
        function formatPrice(e)
        {
            if (typeof pp_price_precision === 'undefined') {
                var pp_price_precision = 2;
            }
            if (e.indexOf('.') === -1) {
                return parseFloat(e.slice(0,-(pp_price_precision))+'.'+ e.slice((e.slice(0,-(pp_price_precision)).length)));
            } else {
                return parseFloat(e);
            }
        }
        function gup( name, url ) {
            if (!url) url = location.href;
            name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
            var regexS = "[\\?&]"+name+"=([^&#]*)";
            var regex = new RegExp( regexS );
            var results = regex.exec( url );
            return results == null ? null : results[1];
        }
        function init_cust_add_to_cart(tries)
        {
            
            if ($('').length > 0 || tries == 0) {
                $(document).on('click mousedown', '', function() {
                    console.log('Custom Add To Cart clicked');
                    pixelCall(getpixelvalueslist($(this)));
                });
            
            } else {
                setTimeout(function() { init_cust_add_to_cart(tries-1) }, 250);
            }
        }
    }
}
});

    0) { productname = object.find('[itemprop="name"]').text(); } else if (object.find('.product-title').length > 0) { productname = object.find('.product-title').first().text(); } else { productname = object.find('h1').first().text(); } id_product = getIdProduct(object); if (typeof object.data('idProductAttribute') !== 'undefined') { id_product_attribute = object.data('idProductAttribute'); } values = { content_name : productname, content_category: 'Accueil', value: iv, currency: 'TND', content_ids : ['' + id_product + (id_product_attribute > 0 ? '' + id_product_attribute : '')], content_type: 'product', }; return values; } function getPriceRecursive(tries, object) { var res = ''; if (object.parent().find('[itemprop="price"]').length > 0) { res = getPriceFromElement(object.parent().find('[itemprop="price"]')); } else if (object.parent().find('.price:eq(0)').length > 0) { res = getPriceFromElement(object.parent().find('.price:eq(0)')); } else { if (tries > 0) { res = getPriceRecursive(tries-1, object.parent()); } else { return false; } } if (res != '') { return res; } } function getNameRecursive(tries, object) { var res = ''; if (object.parent().find('.product-name, itemprop[name]').length > 0) { res = object.parent().find('.product-name, itemprop[name]').first().text().trim(); } else { if (tries > 0) { res = getNameRecursive(tries-1, object.parent()); } else { return false; } } if (res != '') { return res; } } function getIdProduct(object) { if (typeof object.data('id_product') !== 'undefined') { return object.data('id_product'); } else if (typeof object.find('button').data('idProduct') !== 'undefined') { return object.find('button').data('idProduct'); } else if (object.find('[name="id_product"]').length > 0) { return object.find('input[name="id_product"]').first().val(); } else if (object.find('input#product_page_product_id').length > 0) { return object.find('input#product_page_product_id').val(); } else if (object.closest('form').length > 0 && object.closest('form').find('input[name="id_product"]').length > 0) { return object.closest('form').find('input[name="id_product"]').val(); } else { console.log('Could not find the product ID in the products list, contact the developer to ask for further assistance'); return ''; } } function getpixelvalue(object) { var productname = ''; var iv = getProductPrice(object); if (typeof object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title') != 'undefined') { productname = object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title'); } else if ($("#bigpic").length > 0) { productname = $("#bigpic").attr('title'); } else if (object.parents('.row').first().find('h1').length > 0) { productname = object.parents('.row').first().find('h1').first().html(); } else { productname = object.parents('.primary_block').find('h1').first().html(); object = object.parents('.primary_block'); } var id_product = 0; if ($("#buy_block").find("input[name=id_product]:eq(0)").length > 0) { id_product = $("#buy_block").find("input[name=id_product]:eq(0)").val() } else if ($("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").length > 0) { id_product = $("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").val(); } else { console.log('Could not locate the Product ID: Contact the module developer for assistenace'); } values = { content_name : productname, content_category: 'Accueil', value: iv, currency: 'TND', content_type : 'product', content_ids : [id_product], }; return values; } function getProductPrice(object) { var main = ''; if ($('.col-product-info').length > 0) { main = $('.col-product-info'); } else if ($('#main').length > 0) { main = $('#main') } else if ($('#center_column').length > 0) { main = $('#center_column'); } if (main != '') { var selectors = ['#our_price_display', '[itemprop=price]', '.product-price', '.pb-right-column', '.product-information']; var l = selectors.length; for (var i = 0; i 0) { return getPriceFromElement($(selectors[i])); } } } } function getPriceFromElement(e) { if (typeof e.attr('content') !== 'undefined') { return getPriceFromContent(e.attr('content')); } else { iv = e.text().replace(/\D/g,''); return formatPrice(iv); } } function getPriceFromContent(e) { /*if (e.indexOf('.') !== -1) { return parseFloat(e).toFixed(pp_price_precision); } else {*/ return parseFloat(e); //} } function formatPrice(e) { if (typeof pp_price_precision === 'undefined') { var pp_price_precision = 2; } if (e.indexOf('.') === -1) { return parseFloat(e.slice(0,-(pp_price_precision))+'.'+ e.slice((e.slice(0,-(pp_price_precision)).length))); } else { return parseFloat(e); } } function gup( name, url ) { if (!url) url = location.href; name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); var regexS = "[\\?&]"+name+"=([^&#]*)"; var regex = new RegExp( regexS ); var results = regex.exec( url ); return results == null ? null : results[1]; } function init_cust_add_to_cart(tries) { if ($('').length > 0 || tries == 0) { $(document).on('click mousedown', '', function() { console.log('Custom Add To Cart clicked'); pixelCall(getpixelvalueslist($(this))); }); } else { setTimeout(function() { init_cust_add_to_cart(tries-1) }, 250); } } } } });

    Splash Distribution

    119.0 €

  • 0) {
                productname = object.find('[itemprop="name"]').text();
            } else if (object.find('.product-title').length > 0) {
                productname = object.find('.product-title').first().text();
            } else {
                productname = object.find('h1').first().text();
            }
            id_product = getIdProduct(object);
            if (typeof object.data('idProductAttribute') !== 'undefined') {
                id_product_attribute = object.data('idProductAttribute');
            }
            values = {
                content_name : productname,
                
                                content_category: 'Accueil',
                                
                value: iv,
                currency: 'TND',
    
                    content_ids : ['' + id_product + (id_product_attribute > 0 ? '' + id_product_attribute : '')],
                content_type: 'product',
            
            };
            return values;
        }

        function getPriceRecursive(tries, object)
        {
            var res = '';
            if (object.parent().find('[itemprop="price"]').length > 0) {
                res = getPriceFromElement(object.parent().find('[itemprop="price"]'));
            } else if (object.parent().find('.price:eq(0)').length > 0) {
                res = getPriceFromElement(object.parent().find('.price:eq(0)'));
            } else {
                if (tries > 0) {
                    res = getPriceRecursive(tries-1, object.parent());
                } else {
                    return false;
                }
            }
            if (res != '') {
                return res;
            }
        }
        function getNameRecursive(tries, object)
        {
            var res = '';
            if (object.parent().find('.product-name, itemprop[name]').length > 0) {
                res = object.parent().find('.product-name, itemprop[name]').first().text().trim();
            } else {
                if (tries > 0) {
                    res = getNameRecursive(tries-1, object.parent());
                } else {
                    return false;
                }
            }
            if (res != '') {
                return res;
            }
        }
        function getIdProduct(object)
        {
            if (typeof object.data('id_product') !== 'undefined') {
                return object.data('id_product');
            } else if (typeof object.find('button').data('idProduct') !== 'undefined') {
                return object.find('button').data('idProduct');
            } else if (object.find('[name="id_product"]').length > 0) {
                return object.find('input[name="id_product"]').first().val();
            } else if (object.find('input#product_page_product_id').length > 0) {
                return object.find('input#product_page_product_id').val();
            } else if (object.closest('form').length > 0 && object.closest('form').find('input[name="id_product"]').length > 0) {
                return object.closest('form').find('input[name="id_product"]').val();
            } else {
                console.log('Could not find the product ID in the products list, contact the developer to ask for further assistance');
                return '';
            }
        }
        function getpixelvalue(object) {
            var productname = '';
            var iv = getProductPrice(object);
            if (typeof object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title') != 'undefined') {
                productname = object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title');
            } else if ($("#bigpic").length > 0) {
                productname = $("#bigpic").attr('title');
            } else if (object.parents('.row').first().find('h1').length > 0) {
                productname = object.parents('.row').first().find('h1').first().html();
            } else {
                productname = object.parents('.primary_block').find('h1').first().html();
                object = object.parents('.primary_block');
            }
            
                                    var id_product = 0;
            if ($("#buy_block").find("input[name=id_product]:eq(0)").length > 0) {
                id_product = $("#buy_block").find("input[name=id_product]:eq(0)").val()
            } else if ($("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").length  > 0) {
                id_product = $("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").val();
            } else {
                console.log('Could not locate the Product ID: Contact the module developer for assistenace');
            }
                        
            values = {
                content_name : productname,
                
                                content_category: 'Accueil',
                                
                value: iv,
                currency: 'TND',
      
                            content_type : 'product',
            content_ids : [id_product],
                        
            };
            return values;
        }
        function getProductPrice(object) {
            var main = '';
            if ($('.col-product-info').length > 0) {
                main = $('.col-product-info');
            } else if ($('#main').length > 0) {
                main = $('#main')
            } else if ($('#center_column').length > 0) {
                main = $('#center_column');
            }
            if (main != '') {
                var selectors = ['#our_price_display', '[itemprop=price]', '.product-price', '.pb-right-column', '.product-information'];
                var l = selectors.length;
                for (var i = 0; i  0) {
                        return getPriceFromElement($(selectors[i]));
                    }
                }
            }
        }
        function getPriceFromElement(e)
        {
            if (typeof e.attr('content') !== 'undefined') {
                return getPriceFromContent(e.attr('content'));
            } else {
                iv = e.text().replace(/\D/g,'');
                return formatPrice(iv);
            }
        }
        function getPriceFromContent(e)
        {
            /*if (e.indexOf('.') !== -1) {
                return parseFloat(e).toFixed(pp_price_precision);
            } else {*/
                return parseFloat(e);
            //}
        }
        function formatPrice(e)
        {
            if (typeof pp_price_precision === 'undefined') {
                var pp_price_precision = 2;
            }
            if (e.indexOf('.') === -1) {
                return parseFloat(e.slice(0,-(pp_price_precision))+'.'+ e.slice((e.slice(0,-(pp_price_precision)).length)));
            } else {
                return parseFloat(e);
            }
        }
        function gup( name, url ) {
            if (!url) url = location.href;
            name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
            var regexS = "[\\?&]"+name+"=([^&#]*)";
            var regex = new RegExp( regexS );
            var results = regex.exec( url );
            return results == null ? null : results[1];
        }
        function init_cust_add_to_cart(tries)
        {
            
            if ($('').length > 0 || tries == 0) {
                $(document).on('click mousedown', '', function() {
                    console.log('Custom Add To Cart clicked');
                    pixelCall(getpixelvalueslist($(this)));
                });
            
            } else {
                setTimeout(function() { init_cust_add_to_cart(tries-1) }, 250);
            }
        }
    }
}
});

    0) { productname = object.find('[itemprop="name"]').text(); } else if (object.find('.product-title').length > 0) { productname = object.find('.product-title').first().text(); } else { productname = object.find('h1').first().text(); } id_product = getIdProduct(object); if (typeof object.data('idProductAttribute') !== 'undefined') { id_product_attribute = object.data('idProductAttribute'); } values = { content_name : productname, content_category: 'Accueil', value: iv, currency: 'TND', content_ids : ['' + id_product + (id_product_attribute > 0 ? '' + id_product_attribute : '')], content_type: 'product', }; return values; } function getPriceRecursive(tries, object) { var res = ''; if (object.parent().find('[itemprop="price"]').length > 0) { res = getPriceFromElement(object.parent().find('[itemprop="price"]')); } else if (object.parent().find('.price:eq(0)').length > 0) { res = getPriceFromElement(object.parent().find('.price:eq(0)')); } else { if (tries > 0) { res = getPriceRecursive(tries-1, object.parent()); } else { return false; } } if (res != '') { return res; } } function getNameRecursive(tries, object) { var res = ''; if (object.parent().find('.product-name, itemprop[name]').length > 0) { res = object.parent().find('.product-name, itemprop[name]').first().text().trim(); } else { if (tries > 0) { res = getNameRecursive(tries-1, object.parent()); } else { return false; } } if (res != '') { return res; } } function getIdProduct(object) { if (typeof object.data('id_product') !== 'undefined') { return object.data('id_product'); } else if (typeof object.find('button').data('idProduct') !== 'undefined') { return object.find('button').data('idProduct'); } else if (object.find('[name="id_product"]').length > 0) { return object.find('input[name="id_product"]').first().val(); } else if (object.find('input#product_page_product_id').length > 0) { return object.find('input#product_page_product_id').val(); } else if (object.closest('form').length > 0 && object.closest('form').find('input[name="id_product"]').length > 0) { return object.closest('form').find('input[name="id_product"]').val(); } else { console.log('Could not find the product ID in the products list, contact the developer to ask for further assistance'); return ''; } } function getpixelvalue(object) { var productname = ''; var iv = getProductPrice(object); if (typeof object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title') != 'undefined') { productname = object.parents('.ajax_block_product').find('.product-name:eq(0)').attr('title'); } else if ($("#bigpic").length > 0) { productname = $("#bigpic").attr('title'); } else if (object.parents('.row').first().find('h1').length > 0) { productname = object.parents('.row').first().find('h1').first().html(); } else { productname = object.parents('.primary_block').find('h1').first().html(); object = object.parents('.primary_block'); } var id_product = 0; if ($("#buy_block").find("input[name=id_product]:eq(0)").length > 0) { id_product = $("#buy_block").find("input[name=id_product]:eq(0)").val() } else if ($("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").length > 0) { id_product = $("#add-to-cart-or-refresh").find("input[name=id_product]:eq(0)").val(); } else { console.log('Could not locate the Product ID: Contact the module developer for assistenace'); } values = { content_name : productname, content_category: 'Accueil', value: iv, currency: 'TND', content_type : 'product', content_ids : [id_product], }; return values; } function getProductPrice(object) { var main = ''; if ($('.col-product-info').length > 0) { main = $('.col-product-info'); } else if ($('#main').length > 0) { main = $('#main') } else if ($('#center_column').length > 0) { main = $('#center_column'); } if (main != '') { var selectors = ['#our_price_display', '[itemprop=price]', '.product-price', '.pb-right-column', '.product-information']; var l = selectors.length; for (var i = 0; i 0) { return getPriceFromElement($(selectors[i])); } } } } function getPriceFromElement(e) { if (typeof e.attr('content') !== 'undefined') { return getPriceFromContent(e.attr('content')); } else { iv = e.text().replace(/\D/g,''); return formatPrice(iv); } } function getPriceFromContent(e) { /*if (e.indexOf('.') !== -1) { return parseFloat(e).toFixed(pp_price_precision); } else {*/ return parseFloat(e); //} } function formatPrice(e) { if (typeof pp_price_precision === 'undefined') { var pp_price_precision = 2; } if (e.indexOf('.') === -1) { return parseFloat(e.slice(0,-(pp_price_precision))+'.'+ e.slice((e.slice(0,-(pp_price_precision)).length))); } else { return parseFloat(e); } } function gup( name, url ) { if (!url) url = location.href; name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); var regexS = "[\\?&]"+name+"=([^&#]*)"; var regex = new RegExp( regexS ); var results = regex.exec( url ); return results == null ? null : results[1]; } function init_cust_add_to_cart(tries) { if ($('').length > 0 || tries == 0) { $(document).on('click mousedown', '', function() { console.log('Custom Add To Cart clicked'); pixelCall(getpixelvalueslist($(this))); }); } else { setTimeout(function() { init_cust_add_to_cart(tries-1) }, 250); } } } } });

    Splash Distribution

    100.0 €

Pourquoi réclamer Splash Distribution sur Roussette ?

  • Prix et stock à jour via votre flux Google Shopping existant
  • Placement Premium prioritaire dans le comparateur de prix français
  • Tableau de bord impressions / clics — sans frais au clic
  • Aucun module à installer sur votre site

Roussette n’envoie pas d’e-mails marketing de masse aux boutiques indexées. La réclamation est volontaire, à l’initiative du marchand. Voir aussi la FAQ Marchands et les mentions légales.