		<section class="elementor-section elementor-top-section elementor-element elementor-element-a0e2699 elementor-section-full_width elementor-hidden-mobile elementor-section-height-default elementor-section-height-default" data-id="a0e2699" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2b786b6" data-id="2b786b6" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div data-elementor-type="wp-page" data-elementor-id="4263" class="elementor elementor-4263" data-elementor-post-type="page">
						<div class="elementor-element elementor-element-87263f5 elementor-widget elementor-widget-slider_revolution" data-id="87263f5" data-element_type="widget" data-e-type="widget" data-widget_type="slider_revolution.default">
					
		<div class="wp-block-themepunch-revslider"><script>console.log(": Slider with alias home-it-11 not found.")</script>
</div>

						</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-8d33bfe elementor-section-full_width elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="8d33bfe" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-16afc7a" data-id="16afc7a" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-a4b97a7 elementor-widget elementor-widget-slider_revolution" data-id="a4b97a7" data-element_type="widget" data-e-type="widget" data-widget_type="slider_revolution.default">
					
		<div class="wp-block-themepunch-revslider"><script>console.log(": Slider with alias home-it-mobile-1 not found.")</script>
</div>

						</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-233dc6e elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="233dc6e" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-20b6fab" data-id="20b6fab" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-4fbfe25 elementor-absolute elementor-widget elementor-widget-shortcode" data-id="4fbfe25" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="shortcode.default">
							<div class="elementor-shortcode"><link rel="stylesheet" href="https://www.tasker.it/php/assets/css/searchbar.css?v=1789650792">
<div class="custom-search-container" id="uniqueSearchContainer">
    <form action="/en/search/" method="get" class="custom-search-form" id="uniqueSearchForm" autocomplete="off">
        <label for="uniqueSearchInput" class="visually-hidden">Cerca</label>
        <input
            name="search"
            type="text"
            placeholder="Search for the product..."
            class="custom-search-input"
            id="uniqueSearchInput"
            required
        />
        <button type="submit" class="custom-search-button" id="uniqueSearchButton">
            <img src="/php/assets/images/search.svg" alt="Cerca" class="custom-search-icon" id="uniqueSearchIcon">
        </button>
        <div class="search-autocomplete" id="searchAutocomplete"></div>
    </form>
</div>
<script>
(function() {
    var input = document.getElementById('uniqueSearchInput');
    var dropdown = document.getElementById('searchAutocomplete');
    var form = document.getElementById('uniqueSearchForm');
    var lang = 'en';
    var urlProd = 'products';
    // Vuoto senza WPML: vedi tasker_lang_prefix() in php/config/config.php.
    var langPrefix = '/en';
    var timer = null;
    var activeIndex = -1;

    function escapeHtml(str) {
        var div = document.createElement('div');
        div.textContent = str;
        return div.innerHTML;
    }

    function highlightMatch(text, query) {
        if (!text || !query) return escapeHtml(text || '');
        var escaped = escapeHtml(text);
        var re = new RegExp('(' + query.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') + ')', 'gi');
        return escaped.replace(re, '<mark>$1</mark>');
    }

    input.addEventListener('input', function() {
        clearTimeout(timer);
        var q = this.value.trim();
        activeIndex = -1;
        if (q.length < 2) {
            dropdown.innerHTML = '';
            dropdown.classList.remove('ac-visible');
            return;
        }
        timer = setTimeout(function() {
            // Proxy same-origin verso la v2: il browser non puo' portare la
            // chiave dell'API, quindi chiama il proprio dominio e la chiave
            // resta sul server (spec §8.6).
            fetch('/php/api/autocomplete.php?q=' + encodeURIComponent(q) + '&lang=' + lang)
                .then(function(r) { return r.json(); })
                .then(function(res) {
                    // La busta della v2 non ripete il codice HTTP: se `data`
                    // non c'e', c'e' `error`.
                    if (!res.data || !res.data.length) {
                        dropdown.innerHTML = '<div class="ac-empty">No results</div>';
                        dropdown.classList.add('ac-visible');
                        return;
                    }
                    var html = '';
                    res.data.forEach(function(item) {
                        var catUrw = item.category && item.category.slug ? item.category.slug : '';
                        var catName = item.category && item.category.name ? item.category.name : '';
                        var href = langPrefix + '/' + urlProd + '/' + catUrw + '/code/?id=' + item.slug;
                        var img = item.thumb || '';
                        var imgHtml = img
                            ? '<img class="ac-thumb" src="' + img + '" alt="" loading="lazy">'
                            : '<div class="ac-thumb ac-thumb-placeholder"><svg viewBox="0 0 24 24" fill="none" stroke="#ccc" stroke-width="1.5"><rect x="3" y="3" width="18" height="18" rx="2"/><circle cx="8.5" cy="8.5" r="1.5"/><path d="m21 15-5-5L5 21"/></svg></div>';
                        html += '<a class="ac-item" href="' + href + '" data-index="' + res.data.indexOf(item) + '">'
                            + imgHtml
                            + '<div class="ac-text">'
                            + '<span class="ac-name">' + highlightMatch(item.name || '', q) + '</span>'
                            + '<span class="ac-meta">'
                            + '<span class="ac-cod">' + escapeHtml(item.sku || '') + '</span>'
                            + (catName ? '<span class="ac-cat">' + escapeHtml(catName) + '</span>' : '')
                            + '</span>'
                            + '</div>'
                            + '</a>';
                    });
                    html += '<a class="ac-footer" href="' + langPrefix + '/search/?search=' + encodeURIComponent(q) + '">'
                        + 'View all results &rarr;</a>';
                    dropdown.innerHTML = html;
                    dropdown.classList.add('ac-visible');
                })
                .catch(function() {
                    dropdown.classList.remove('ac-visible');
                });
        }, 250);
    });

    // Navigazione con tastiera
    input.addEventListener('keydown', function(e) {
        var items = dropdown.querySelectorAll('.ac-item');
        if (!items.length) return;
        if (e.key === 'ArrowDown') {
            e.preventDefault();
            activeIndex = Math.min(activeIndex + 1, items.length - 1);
            updateActive(items);
        } else if (e.key === 'ArrowUp') {
            e.preventDefault();
            activeIndex = Math.max(activeIndex - 1, -1);
            updateActive(items);
        } else if (e.key === 'Enter' && activeIndex >= 0) {
            e.preventDefault();
            items[activeIndex].click();
        } else if (e.key === 'Escape') {
            dropdown.classList.remove('ac-visible');
            activeIndex = -1;
        }
    });

    function updateActive(items) {
        items.forEach(function(el, i) {
            el.classList.toggle('ac-active', i === activeIndex);
            if (i === activeIndex) el.scrollIntoView({block: 'nearest'});
        });
    }

    document.addEventListener('click', function(e) {
        if (!e.target.closest('#uniqueSearchContainer')) {
            dropdown.classList.remove('ac-visible');
        }
    });

    input.addEventListener('focus', function() {
        if (dropdown.innerHTML && this.value.trim().length >= 2) {
            dropdown.classList.add('ac-visible');
        }
    });
})();
</script></div>
						</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-a0e2699 elementor-section-full_width elementor-hidden-mobile elementor-section-height-default elementor-section-height-default" data-id="a0e2699" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2b786b6" data-id="2b786b6" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div data-elementor-type="wp-page" data-elementor-id="4263" class="elementor elementor-4263" data-elementor-post-type="page">
						<div class="elementor-element elementor-element-87263f5 elementor-widget elementor-widget-slider_revolution" data-id="87263f5" data-element_type="widget" data-e-type="widget" data-widget_type="slider_revolution.default">
					
		<div class="wp-block-themepunch-revslider"><script>console.log(": Slider with alias home-it-11 not found.")</script>
</div>

						</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-8d33bfe elementor-section-full_width elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="8d33bfe" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-16afc7a" data-id="16afc7a" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
				
		<!-- All in One SEO 5.0.1.1 - aioseo.com -->
	<meta name="description" content="Cerca &#039;; html += &#039;&#039; + imgHtml + &#039;&#039; + &#039;&#039; + highlightMatch(item.name || &#039;&#039;, q) + &#039;&#039; + &#039;&#039; + &#039;&#039; + escapeHtml(item.sku || &#039;&#039;) + &#039;&#039; + (catName ? &#039;&#039; + escapeHtml(catName) + &#039;&#039; : &#039;&#039;) + &#039;&#039; + &#039;&#039; + &#039;&#039;; }); html += &#039;&#039; + &#039;View all results →&#039;; dropdown.innerHTML =" />
	<meta name="robots" content="max-image-preview:large" />
	<link rel="canonical" href="https://www.tasker.it/en/header/" />
	<meta name="generator" content="All in One SEO (AIOSEO) 5.0.1.1" />
		<meta property="og:locale" content="en_US" />
		<meta property="og:site_name" content="Tasker -" />
		<meta property="og:type" content="article" />
		<meta property="og:title" content="header - Tasker" />
		<meta property="og:description" content="Cerca &#039;; html += &#039;&#039; + imgHtml + &#039;&#039; + &#039;&#039; + highlightMatch(item.name || &#039;&#039;, q) + &#039;&#039; + &#039;&#039; + &#039;&#039; + escapeHtml(item.sku || &#039;&#039;) + &#039;&#039; + (catName ? &#039;&#039; + escapeHtml(catName) + &#039;&#039; : &#039;&#039;) + &#039;&#039; + &#039;&#039; + &#039;&#039;; }); html += &#039;&#039; + &#039;View all results →&#039;; dropdown.innerHTML =" />
		<meta property="og:url" content="https://www.tasker.it/en/header/" />
		<meta property="article:published_time" content="2023-11-30T09:31:59+00:00" />
		<meta property="article:modified_time" content="2023-12-01T10:58:11+00:00" />
		<meta name="twitter:card" content="summary_large_image" />
		<meta name="twitter:title" content="header - Tasker" />
		<meta name="twitter:description" content="Cerca &#039;; html += &#039;&#039; + imgHtml + &#039;&#039; + &#039;&#039; + highlightMatch(item.name || &#039;&#039;, q) + &#039;&#039; + &#039;&#039; + &#039;&#039; + escapeHtml(item.sku || &#039;&#039;) + &#039;&#039; + (catName ? &#039;&#039; + escapeHtml(catName) + &#039;&#039; : &#039;&#039;) + &#039;&#039; + &#039;&#039; + &#039;&#039;; }); html += &#039;&#039; + &#039;View all results →&#039;; dropdown.innerHTML =" />
		<div class="elementor-element elementor-element-a4b97a7 elementor-widget elementor-widget-slider_revolution" data-id="a4b97a7" data-element_type="widget" data-e-type="widget" data-widget_type="slider_revolution.default">
					
		<div class="wp-block-themepunch-revslider"><script>console.log(": Slider with alias home-it-mobile-1 not found.")</script>
</div>

						</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-233dc6e elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="233dc6e" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-20b6fab" data-id="20b6fab" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-4fbfe25 elementor-absolute elementor-widget elementor-widget-shortcode" data-id="4fbfe25" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="shortcode.default">
							<div class="elementor-shortcode"><link rel="stylesheet" href="https://www.tasker.it/php/assets/css/searchbar.css?v=1789650792">
<div class="custom-search-container" id="uniqueSearchContainer">
    <form action="/en/search/" method="get" class="custom-search-form" id="uniqueSearchForm" autocomplete="off">
        <label for="uniqueSearchInput" class="visually-hidden">Cerca</label>
        <input
            name="search"
            type="text"
            placeholder="Search for the product..."
            class="custom-search-input"
            id="uniqueSearchInput"
            required
        />
        <button type="submit" class="custom-search-button" id="uniqueSearchButton">
            <img src="/php/assets/images/search.svg" alt="Cerca" class="custom-search-icon" id="uniqueSearchIcon">
        </button>
        <div class="search-autocomplete" id="searchAutocomplete"></div>
    </form>
</div>
<script>
(function() {
    var input = document.getElementById('uniqueSearchInput');
    var dropdown = document.getElementById('searchAutocomplete');
    var form = document.getElementById('uniqueSearchForm');
    var lang = 'en';
    var urlProd = 'products';
    // Vuoto senza WPML: vedi tasker_lang_prefix() in php/config/config.php.
    var langPrefix = '/en';
    var timer = null;
    var activeIndex = -1;

    function escapeHtml(str) {
        var div = document.createElement('div');
        div.textContent = str;
        return div.innerHTML;
    }

    function highlightMatch(text, query) {
        if (!text || !query) return escapeHtml(text || '');
        var escaped = escapeHtml(text);
        var re = new RegExp('(' + query.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') + ')', 'gi');
        return escaped.replace(re, '<mark>$1</mark>');
    }

    input.addEventListener('input', function() {
        clearTimeout(timer);
        var q = this.value.trim();
        activeIndex = -1;
        if (q.length < 2) {
            dropdown.innerHTML = '';
            dropdown.classList.remove('ac-visible');
            return;
        }
        timer = setTimeout(function() {
            // Proxy same-origin verso la v2: il browser non puo' portare la
            // chiave dell'API, quindi chiama il proprio dominio e la chiave
            // resta sul server (spec §8.6).
            fetch('/php/api/autocomplete.php?q=' + encodeURIComponent(q) + '&lang=' + lang)
                .then(function(r) { return r.json(); })
                .then(function(res) {
                    // La busta della v2 non ripete il codice HTTP: se `data`
                    // non c'e', c'e' `error`.
                    if (!res.data || !res.data.length) {
                        dropdown.innerHTML = '<div class="ac-empty">No results</div>';
                        dropdown.classList.add('ac-visible');
                        return;
                    }
                    var html = '';
                    res.data.forEach(function(item) {
                        var catUrw = item.category && item.category.slug ? item.category.slug : '';
                        var catName = item.category && item.category.name ? item.category.name : '';
                        var href = langPrefix + '/' + urlProd + '/' + catUrw + '/code/?id=' + item.slug;
                        var img = item.thumb || '';
                        var imgHtml = img
                            ? '<img class="ac-thumb" src="' + img + '" alt="" loading="lazy">'
                            : '<div class="ac-thumb ac-thumb-placeholder"><svg viewBox="0 0 24 24" fill="none" stroke="#ccc" stroke-width="1.5"><rect x="3" y="3" width="18" height="18" rx="2"/><circle cx="8.5" cy="8.5" r="1.5"/><path d="m21 15-5-5L5 21"/></svg></div>';
                        html += '<a class="ac-item" href="' + href + '" data-index="' + res.data.indexOf(item) + '">'
                            + imgHtml
                            + '<div class="ac-text">'
                            + '<span class="ac-name">' + highlightMatch(item.name || '', q) + '</span>'
                            + '<span class="ac-meta">'
                            + '<span class="ac-cod">' + escapeHtml(item.sku || '') + '</span>'
                            + (catName ? '<span class="ac-cat">' + escapeHtml(catName) + '</span>' : '')
                            + '</span>'
                            + '</div>'
                            + '</a>';
                    });
                    html += '<a class="ac-footer" href="' + langPrefix + '/search/?search=' + encodeURIComponent(q) + '">'
                        + 'View all results &rarr;</a>';
                    dropdown.innerHTML = html;
                    dropdown.classList.add('ac-visible');
                })
                .catch(function() {
                    dropdown.classList.remove('ac-visible');
                });
        }, 250);
    });

    // Navigazione con tastiera
    input.addEventListener('keydown', function(e) {
        var items = dropdown.querySelectorAll('.ac-item');
        if (!items.length) return;
        if (e.key === 'ArrowDown') {
            e.preventDefault();
            activeIndex = Math.min(activeIndex + 1, items.length - 1);
            updateActive(items);
        } else if (e.key === 'ArrowUp') {
            e.preventDefault();
            activeIndex = Math.max(activeIndex - 1, -1);
            updateActive(items);
        } else if (e.key === 'Enter' && activeIndex >= 0) {
            e.preventDefault();
            items[activeIndex].click();
        } else if (e.key === 'Escape') {
            dropdown.classList.remove('ac-visible');
            activeIndex = -1;
        }
    });

    function updateActive(items) {
        items.forEach(function(el, i) {
            el.classList.toggle('ac-active', i === activeIndex);
            if (i === activeIndex) el.scrollIntoView({block: 'nearest'});
        });
    }

    document.addEventListener('click', function(e) {
        if (!e.target.closest('#uniqueSearchContainer')) {
            dropdown.classList.remove('ac-visible');
        }
    });

    input.addEventListener('focus', function() {
        if (dropdown.innerHTML && this.value.trim().length >= 2) {
            dropdown.classList.add('ac-visible');
        }
    });
})();
</script></div>
						</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		
<link rel="stylesheet" href="https://www.tasker.it/php/assets/css/slider.css?v=1789650792" media="all"/>

<section class="fam-wrapper wordpress">

<div class="slider-container exowl" role="region" aria-label="Prodotti consigliati">

</div>

<script>
      const sliderWrapper = document.querySelector(".slider-container");

      const data = [{"ID0":"1316","cod":"C128 AR","urw":"c128-ar","nome":"Cavo microfonico bilanciato 2x0,35 mm² armato","foto":"https:\/\/pub-709382287d034f098dcf8038430c7b71.r2.dev\/products\/4724_1.jpg","pathProd":"https:\/\/www.tasker.it\/4263\/prodotti\/audio\/code\/?id=c128-ar"},{"ID0":"1976","cod":"C282 Super","urw":"c282-super","nome":"Cavo cassa 8x4,00 mm² - Costruzione a corona","foto":"https:\/\/pub-709382287d034f098dcf8038430c7b71.r2.dev\/products\/d516b87f95_1.png","pathProd":"https:\/\/www.tasker.it\/4263\/prodotti\/audio\/code\/?id=c282-super"},{"ID0":"1979","cod":"C747 PVC","urw":"c747-pvc","nome":"Cavo Komby multi Cat. 7 4x2x0,14","foto":"https:\/\/pub-709382287d034f098dcf8038430c7b71.r2.dev\/products\/e77fdeed5c_1.png","pathProd":"https:\/\/www.tasker.it\/4263\/prodotti\/audio\/code\/?id=c747-pvc"},{"ID0":"2070","cod":"TSK1078 CPR Cca","urw":"tsk1078-cpr-cca","nome":"Cavo coassiale HDTV-HD SDI 1x0.52 (75Ohm) CPR Cca","foto":"https:\/\/pub-709382287d034f098dcf8038430c7b71.r2.dev\/products\/ea607aee25_1.jpg","pathProd":"https:\/\/www.tasker.it\/4263\/prodotti\/video\/code\/?id=tsk1078-cpr-cca"},{"ID0":"2071","cod":"TSK503 CPR Cca","urw":"tsk503-cpr-cca","nome":"Cavo cassa 4x2,50 mm²","foto":"https:\/\/pub-709382287d034f098dcf8038430c7b71.r2.dev\/products\/7cebf1c723_1.jpg","pathProd":"https:\/\/www.tasker.it\/4263\/prodotti\/audio\/code\/?id=tsk503-cpr-cca"},{"ID0":"2082","cod":"TSK1050 CPR Cca","urw":"tsk1050-cpr-cca","nome":"Cavo microfonico 2x0,35 mm² CPR Cca","foto":"https:\/\/pub-709382287d034f098dcf8038430c7b71.r2.dev\/products\/0a7d45891e_1.jpg","pathProd":"https:\/\/www.tasker.it\/4263\/prodotti\/audio\/code\/?id=tsk1050-cpr-cca"},{"ID0":"2109","cod":"TSK912 CPR Cca","urw":"tsk912-cpr-cca","nome":"Cavo muticoppia DMX 12x2x0,25 mm²","foto":"https:\/\/pub-709382287d034f098dcf8038430c7b71.r2.dev\/products\/81cea3c137_1.jpg","pathProd":"https:\/\/www.tasker.it\/4263\/prodotti\/audio\/code\/?id=tsk912-cpr-cca"},{"ID0":"2151","cod":"PC8333DSPVV-1","urw":"pc8333dspvv-1","nome":"Cablato con cavo C283 PVC Extra Soft + 2 XLR 3 poli \u0026amp; 2 PowercON - mt. 1","foto":"https:\/\/pub-709382287d034f098dcf8038430c7b71.r2.dev\/products\/195cec5bfd_1.png","pathProd":"https:\/\/www.tasker.it\/4263\/prodotti\/accessori\/code\/?id=pc8333dspvv-1"},{"ID0":"2171","cod":"SB3712F12MLPF","urw":"sb3712f12mlpf","nome":"Stagebox con connettori Neutrik XLR da pannello, 12 maschi + 12 femmine + 2 connettori Syntax","foto":"https:\/\/pub-709382287d034f098dcf8038430c7b71.r2.dev\/products\/4a70937f63_1.jpg","pathProd":"https:\/\/www.tasker.it\/4263\/prodotti\/accessori\/code\/?id=sb3712f12mlpf"},{"ID0":"2175","cod":"GTSMPTESV","urw":"gtsmptesv","nome":"Avvolgicavo professionale cablato FIBRA OTTICA HYBRID SMTPE Cable","foto":"https:\/\/pub-709382287d034f098dcf8038430c7b71.r2.dev\/products\/2f17680876_1.jpg","pathProd":"https:\/\/www.tasker.it\/4263\/prodotti\/accessori\/code\/?id=gtsmptesv"},{"ID0":"2176","cod":"C723 CPR B2ca","urw":"c723-cpr-b2ca","nome":"Cavo LAN Cat.7A S.\/F.T.P. in LSZH 4x2x0,25 mm²","foto":"https:\/\/pub-709382287d034f098dcf8038430c7b71.r2.dev\/products\/65ef7f2b6c_1.png","pathProd":"https:\/\/www.tasker.it\/4263\/prodotti\/data-network\/code\/?id=c723-cpr-b2ca"}];

      // Una sola scrittura nel DOM invece di una per prodotto: con `+=` il
      // browser ricostruisce tutta la fascia a ogni giro, e a meta' ciclo le
      // card gia' inserite vengono buttate via e rifatte.
      sliderWrapper.innerHTML = data.map((element) => `
        <a href="${element.pathProd}" class="slider-item">
          <img src="${element.foto}" alt="${element.cod}" class="lazyload">
          <div class="slideTxt">
            <p class="title">${element.cod}</p>
            <p class="description">${element.nome}</p>
          </div>
        </a>
      `).join("");
</script>

<script src="https://www.tasker.it/php/assets/js/exowl-dots.js?v=1789650792" defer></script>
</section>
		<script type="application/ld+json" class="aioseo-schema">
			{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/www.tasker.it\/en\/header\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.tasker.it\/en\/#listItem","position":1,"name":"Home","item":"https:\/\/www.tasker.it\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tasker.it\/en\/header\/#listItem","name":"header"}},{"@type":"ListItem","@id":"https:\/\/www.tasker.it\/en\/header\/#listItem","position":2,"name":"header","previousItem":{"@type":"ListItem","@id":"https:\/\/www.tasker.it\/en\/#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/www.tasker.it\/en\/#organization","name":"Tasker","url":"https:\/\/www.tasker.it\/en\/"},{"@type":"WebPage","@id":"https:\/\/www.tasker.it\/en\/header\/#webpage","url":"https:\/\/www.tasker.it\/en\/header\/","name":"header - Tasker","description":"Cerca '; html += '' + imgHtml + '' + '' + highlightMatch(item.name || '', q) + '' + '' + '' + escapeHtml(item.sku || '') + '' + (catName ? '' + escapeHtml(catName) + '' : '') + '' + '' + ''; }); html += '' + 'View all results \u2192'; dropdown.innerHTML =","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.tasker.it\/en\/#website"},"breadcrumb":{"@id":"https:\/\/www.tasker.it\/en\/header\/#breadcrumblist"},"datePublished":"2023-11-30T10:31:59+01:00","dateModified":"2023-12-01T11:58:11+01:00"},{"@type":"WebSite","@id":"https:\/\/www.tasker.it\/en\/#website","url":"https:\/\/www.tasker.it\/en\/","name":"Tasker","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.tasker.it\/en\/#organization"}}]}
		</script>
		<!-- All in One SEO -->

<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /var/www/html/wp-content/plugins/elementor/core/base/document.php:1909) in <b>/var/www/html/wp-includes/rest-api/class-wp-rest-server.php</b> on line <b>1930</b><br />
<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /var/www/html/wp-content/plugins/elementor/core/base/document.php:1909) in <b>/var/www/html/wp-includes/rest-api/class-wp-rest-server.php</b> on line <b>1930</b><br />
{"id":4263,"date":"2023-11-30T10:31:59","date_gmt":"2023-11-30T09:31:59","guid":{"rendered":"https:\/\/www.tasker.it\/header\/"},"modified":"2023-12-01T11:58:11","modified_gmt":"2023-12-01T10:58:11","slug":"header","status":"publish","type":"page","link":"https:\/\/www.tasker.it\/en\/header\/","title":{"rendered":"header"},"content":{"rendered":"\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-4263","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"","aioseo_head_json":{"title":"header - Tasker","description":"Cerca '; html += '' + imgHtml + '' + '' + highlightMatch(item.name || '', q) + '' + '' + '' + escapeHtml(item.sku || '') + '' + (catName ? '' + escapeHtml(catName) + '' : '') + '' + '' + ''; }); html += '' + 'View all results \u2192'; dropdown.innerHTML =","canonical_url":"https:\/\/www.tasker.it\/en\/header\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/www.tasker.it\/en\/header\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.tasker.it\/en\/#listItem","position":1,"name":"Home","item":"https:\/\/www.tasker.it\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tasker.it\/en\/header\/#listItem","name":"header"}},{"@type":"ListItem","@id":"https:\/\/www.tasker.it\/en\/header\/#listItem","position":2,"name":"header","previousItem":{"@type":"ListItem","@id":"https:\/\/www.tasker.it\/en\/#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/www.tasker.it\/en\/#organization","name":"Tasker","url":"https:\/\/www.tasker.it\/en\/"},{"@type":"WebPage","@id":"https:\/\/www.tasker.it\/en\/header\/#webpage","url":"https:\/\/www.tasker.it\/en\/header\/","name":"header - Tasker","description":"Cerca '; html += '' + imgHtml + '' + '' + highlightMatch(item.name || '', q) + '' + '' + '' + escapeHtml(item.sku || '') + '' + (catName ? '' + escapeHtml(catName) + '' : '') + '' + '' + ''; }); html += '' + 'View all results \u2192'; dropdown.innerHTML =","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.tasker.it\/en\/#website"},"breadcrumb":{"@id":"https:\/\/www.tasker.it\/en\/header\/#breadcrumblist"},"datePublished":"2023-11-30T10:31:59+01:00","dateModified":"2023-12-01T11:58:11+01:00"},{"@type":"WebSite","@id":"https:\/\/www.tasker.it\/en\/#website","url":"https:\/\/www.tasker.it\/en\/","name":"Tasker","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.tasker.it\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Tasker -","og:type":"article","og:title":"header - Tasker","og:description":"Cerca '; html += '' + imgHtml + '' + '' + highlightMatch(item.name || '', q) + '' + '' + '' + escapeHtml(item.sku || '') + '' + (catName ? '' + escapeHtml(catName) + '' : '') + '' + '' + ''; }); html += '' + 'View all results \u2192'; dropdown.innerHTML =","og:url":"https:\/\/www.tasker.it\/en\/header\/","article:published_time":"2023-11-30T09:31:59+00:00","article:modified_time":"2023-12-01T10:58:11+00:00","twitter:card":"summary_large_image","twitter:title":"header - Tasker","twitter:description":"Cerca '; html += '' + imgHtml + '' + '' + highlightMatch(item.name || '', q) + '' + '' + '' + escapeHtml(item.sku || '') + '' + (catName ? '' + escapeHtml(catName) + '' : '') + '' + '' + ''; }); html += '' + 'View all results \u2192'; dropdown.innerHTML ="},"aioseo_meta_data":{"post_id":"4263","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-12-01 10:59:13","updated":"2025-06-07 10:06:52","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tasker.it\/en\/\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\theader\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.tasker.it\/en\/"},{"label":"header","link":"https:\/\/www.tasker.it\/en\/header\/"}],"_links":{"self":[{"href":"https:\/\/www.tasker.it\/en\/wp-json\/wp\/v2\/pages\/4263","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tasker.it\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.tasker.it\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.tasker.it\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tasker.it\/en\/wp-json\/wp\/v2\/comments?post=4263"}],"version-history":[{"count":0,"href":"https:\/\/www.tasker.it\/en\/wp-json\/wp\/v2\/pages\/4263\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.tasker.it\/en\/wp-json\/wp\/v2\/media?parent=4263"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}