K-Othrine SC 25, 5 x 5 ml (2024)

    K-Othrine SC 25, 5 x 5 ml (4) K-Othrine SC 25, 5 x 5 ml (5)

Stoc epuizat

Produs indisponibil

Te rugăm să alegi unul din produsele similare afișate în pagină

Estimare livrare

Afișează variante

Înapoi

' + '

' + $('.product_shipping .time_delivery_ebox').html() + '

') }else{ $('.ebox-estimation').empty() }},error: function(xhr){console.log("An error occured: " + xhr.status + " " + xhr.statusText);}})}})})$('.select-map-mobile').on('click', function(){$('.product_shipping_map').addClass('show-map')})$('#select_ebox_mobile .back-btn').on('click', function(){$('.product_shipping_map').removeClass('show-map')})$('.shipping_results').on('click', '.open-map',function(){ $(".product_shipping").addClass("show");$(".shipping_fog").show();$('.shipping_regions').find('option').first().html('Alege judetul');$('.shipping_regions_mobile').find('option').first().html('Alege judetul');$(".ebox_select").empty();$(".ebox_select_mobile").empty();const possibleScriptTag = document.querySelector('script[src$="ol.js"]');if(!possibleScriptTag){var scriptElement = document.createElement('script');scriptElement.src = "https://www.botanistii.ro/js/ol/dist/ol.js";scriptElement.type = "text/javascript";var linkElement = document.createElement('link');linkElement.rel = "stylesheet";linkElement.href = "https://www.botanistii.ro/js/ol/ol.css";linkElement.type = "text/css";var headElement = document.head || document.getElementsByTagName('head')[0];headElement.appendChild(scriptElement);headElement.appendChild(linkElement);} show_map($('.alege_oras .localitate').text()) }) $(".shipping_cities").change(function(){ localStorage.removeItem('ebox_text') localStorage.removeItem('ebox_lonlat') localStorage.removeItem('ebox_judet_localitate') $(".ebox_select").empty(); $(".ebox_select_mobile").empty(); show_map($('.alege_oras .localitate').text()) }) $('.ebox_select_mobile').on('change', function(){ collectpointVal = $(this).find("option:selected").val();$('.ebox_select').val(collectpointVal).change() }) $('.ebox_select').change(function (e){ collectpointVal = $(this).find("option:selected").val();$('.ebox_select_mobile').val(collectpointVal) var map = $('#map').data('map'); var adresa_selectata = $(this).find("option:selected").val(); var strada_selectata = $(this).find("option:selected").html(); var program_selectat = $(this).find("option:selected").attr('data'); var lonlat = adresa_selectata.split(","); var judet_localstorage = localStorage.getItem('judet'); var city_localstorage = localStorage.getItem('oras'); map.getView().setCenter(ol.proj.transform([lonlat[0], lonlat[1]], 'EPSG:4326', 'EPSG:3857')); map.getView().setZoom(18); if(judet_localstorage !== null && city_localstorage !== null){ var judet = judet_localstorage; var localitate = city_localstorage; }else{ var judet = $('select[name="customer[region]"] option:selected').text(); var localitate = $('select[name="billing[city]"] option:selected').val(); } var boxInfoObj = new Object(); boxInfoObj.text = 'Ridicare personală din punctul de colectare: '; boxInfoObj.street = $('.ebox_select option:selected').text(); boxInfoObj.localitate = localitate; boxInfoObj.judet = judet; boxInfoObj.type = $('.ebox_select option:selected').data('type'); boxInfoObj.postcode = $('.ebox_select option:selected').data('postcode'); var jsonString= JSON.stringify(boxInfoObj); if (adresa_selectata != 'Selectează un punct de colectare') { $('#label_method_ebox_ebox').text('Ridicare personală din punctul de colectare: ' + $('.ebox_select option:selected').text() + ', ' + localitate + ', ' + judet); $('#label_method_ebox_ebox').attr('lonlat', adresa_selectata); localStorage.setItem('ebox_text', 'Ridicare personală din punctul de colectare: ' + $('.ebox_select option:selected').text() + ', ' + localitate + ', ' + judet); localStorage.setItem('ebox_lonlat', adresa_selectata); localStorage.setItem('ebox_judet_localitate', localitate + ', ' + judet); } }) function show_map(localitate){ $(window).scrollTop(0); /*harta*/ function add_map(data) { $('#map').empty(); if ($("#tooltip_map").length == 0) $("#map").prepend('

'); var center = data[0].split(","); var adresa_selectata = $('.ebox_select').find("option:selected").val(); var adresa_ebox = $('.ebox_select option:selected').text(); if (adresa_ebox != 'Selectează un punct de colectare') { center = adresa_selectata.split(","); } if(localStorage.getItem('ebox_lonlat')){ center = localStorage.getItem('ebox_lonlat').split(',') } if(typeof ol == 'undefined'){return false;} var view = new ol.View({ center: ol.proj.fromLonLat([center[0], center[1]]), zoom: 13 // 5 }); var vectorSource = new ol.source.Vector({}); $.each(data, function (key, value) { var lonlat = value.split(","); var id = lonlat[0] + lonlat[1]; var val = lonlat[0] + "," + lonlat[1]; id = id.replace(".", ""); var iconFeature = new ol.Feature({ id: id, geometry: new ol.geom.Point(ol.proj.transform([lonlat[0], lonlat[1]], 'EPSG:4326', 'EPSG:3857')), program: lonlat[2], val: val, }); iconFeature.setId(id); var iconStyle = new ol.style.Style({ image: new ol.style.Icon({ anchor: [0.5, 0.5], anchorXUnits: 'fraction', anchorYUnits: 'fraction', src: 'https://www.botanistii.ro/scripturi_custom_bogdan/ebox_map/marker.png', crossOrigin: 'anonymous', }) }); iconFeature.setStyle(iconStyle); vectorSource.addFeature(iconFeature); }) var vectorLayer = new ol.layer.Vector({ source: vectorSource, updateWhileAnimating: true, updateWhileInteracting: true, }); var map = new ol.Map({ target: 'map', view: view, controls: ol.control.defaults.defaults({attribution: false}), layers: [ new ol.layer.Tile({ preload: 3, source: new ol.source.OSM(), }), vectorLayer, ], loadTilesWhileAnimating: true, }); var element = document.getElementById("tooltip_map"); var popup = new ol.Overlay({ element: element, positioning: 'bottom-center', stopEvent: false, offset: [0, -30], }); var lonlat = $('#label_method_ebox_ebox').attr('lonlat'); map.addOverlay(popup); map.on('pointermove', function(e) { var hit = map.hasFeatureAtPixel(e.pixel); map.getTargetElement().style.cursor = (hit ? 'pointer' : ''); }); map.on('moveend', function (evt) { var adresa_selectata = $('.ebox_select').find("option:selected").val(); var adresa_ebox = $('.ebox_select option:selected').text(); if (!adresa_ebox.includes('Selectează un punct de colectare')) { var lonlat = adresa_selectata.split(","); var featureID = lonlat[0] + lonlat[1]; featureID = featureID.replace(".", ""); var feature_program = vectorLayer.getSource().getFeatureById(featureID).get('program'); popup.setPosition(ol.proj.transform([lonlat[0], lonlat[1]], 'EPSG:4326', 'EPSG:3857')); $(element).html(feature_program); $(element).show(); } }) map.on('click', function (evt) { var feature = map.forEachFeatureAtPixel(evt.pixel, function (feature) { return feature; }); if (feature) { var coordinates = feature.getGeometry().getCoordinates(); popup.setPosition(coordinates); $(element).html(feature.get('program')); $(element).show(); $('.ebox_select').val(feature.get('val')).trigger('change'); $('.ebox_select option[value="' + coordinates + '"]').prop("selected", "selected"); var adresa_ebox = $('.ebox_select option:selected').text(); var judet_localstorage = localStorage.getItem('judet'); var city_localstorage = localStorage.getItem('oras'); if(judet_localstorage !== null && city_localstorage !== null){ var judet = judet_localstorage; var localitate = city_localstorage; }else{ var judet = $('select[name="region_id"] option:selected').text(); var localitate = $('select[name="city"] option:selected').val(); } if (adresa_ebox != 'Selectează un punct de colectare') { $('#label_method_ebox_ebox').attr('lonlat', feature.get('val')); $('#label_method_ebox_ebox').text('Ridicare personală din punctul de colectare: ' + $('.ebox_select option:selected').text() + ', ' + localitate + ', ' + judet); localStorage.setItem('ebox_text', 'Ridicare personală din punctul de colectare: ' + $('.ebox_select option:selected').text() + ', ' + localitate + ', ' + judet); localStorage.setItem('ebox_lonlat', feature.get('val')); localStorage.setItem('ebox_judet_localitate', localitate + ', ' + judet); } } else { $(element).hide(); } }); $('#map').data('map', map);return true; } /*harta*/const possibleScriptTag = document.querySelector('script[src$="ol.js"]'); if (localitate && possibleScriptTag) { var weight = 0; var volume = 0; var localitate_url = localitate.replace(/\s/g, "_"); var judet_url = ""; var judet = ""; var lonlat = $('#label_method_ebox_ebox').attr('lonlat'); if (typeof lonlat === 'undefined') { lonlat = ''; } /*Select si markere*/ jQuery.ajax({ type: "POST", url: 'https://www.botanistii.ro/scripturi_custom_bogdan/ebox_map/ebox_map.php', data: {oras: localitate_url, region: judet, lonlat: lonlat, weight:weight, volume: volume}, success: function (data) { if(data.lonlat.length <= 0){ $('#select_ebox').addClass('no-collectpoints'); $('.select-map-mobile').addClass('no-collectpoints'); $('.product_shipping_map').addClass('no-collectpoints'); $('.select-map-mobile').addClass('no-collectpoints'); }else{ $('#select_ebox').removeClass('no-collectpoints'); $('.select-map-mobile').removeClass('no-collectpoints'); $('.product_shipping_map').removeClass('no-collectpoints'); $('.select-map-mobile').removeClass('no-collectpoints'); } var locatii_ebox = []; locatii_ebox = data['lonlat']; var select_adrese = []; select_adrese = data['select']; if (locatii_ebox != null && locatii_ebox != '') { var lonlat = localStorage.getItem('ebox_lonlat'); var ebox_text = localStorage.getItem('ebox_text'); if (lonlat && ebox_text) { $('#label_method_ebox_ebox').text(ebox_text) $('#label_method_ebox_ebox').attr('lonlat', lonlat); } $(".map_container").addClass('active'); $(".ebox_select").prepend(select_adrese); $(".ebox_select_mobile").prepend(select_adrese); var addMap = add_map(locatii_ebox);if (addMap) {clearInterval(checkIfMap); } else {var checkIfMap = setInterval(function() {var addMap = add_map(locatii_ebox);if (addMap) {clearInterval(checkIfMap);}}, 250);} var selected_ebox = $('.ebox_select option[value="' + lonlat + '"]').text(); if (selected_ebox.length) { var map = $('#map').data('map'); map.getView().setZoom(18); $('.ebox_select option[value="' + lonlat + '"]').prop("selected", "selected"); var ls_ebox_text = localStorage.getItem('ebox_text'); var ls_lonlat = localStorage.getItem('ebox_lonlat'); if (ls_lonlat.length && ls_ebox_text.length) { var boxInfoObj = new Object(); boxInfoObj.text = 'Ridicare personală din punctul de colectare: '; boxInfoObj.street = $('.ebox_select option:selected').text(); boxInfoObj.localitate = localitate; boxInfoObj.judet = judet; boxInfoObj.type = $('.ebox_select option:selected').data('type'); boxInfoObj.postcode = $('.ebox_select option:selected').data('postcode'); var jsonString= JSON.stringify(boxInfoObj); $('#label_method_ebox_ebox').attr('lonlat', ls_lonlat); $('#label_method_ebox_ebox').text(ls_ebox_text); } } } }, dataType: "json", error: function (jqXHR, textStatus, errorThrown) { console.log('Eroare: ' + errorThrown); } }) }else{return false;} }})

K-Othrine SC 25, 5 x 5 ml (2024)

FAQs

How do you use K-Othrine SC 25? ›

The substance is easy to prepare by just adding water and mixing. Mix 25 ml of K-Othrine SC 25 with 5 l of water to treat 100 m. Please be sure to read, understand, and follow the full Conditions, Disclaimer, and Directions for Use. Use the appropriate personal safety equipment if required and when needed.

What is the mixing ratio for Aqua K-Othrine? ›

2.5 mL/ 1000 m3 Dilute with a suitable volume of water (further details provided in the table below) and apply using equipment capable of generating a mist or thermal or cold fog.

What is K-Othrine used for? ›

K-Othrine Flow contains deltamethrin 2.5% SC and is useful for effective control of co*ckroaches, houseflies and mosquitoes in houses. It is used as a residual spray on surfaces and for bed net impregnation to protect against adult mosquitoes. Key Product Benefits: Broad spectrum activity.

Is K-Othrine effective against bed bugs? ›

TARGET ORGANISMS K-Othrine WG 250 can be used to eliminate adults of crawling insects, such as co*ckroaches / American co*ckroaches (Blattodea) and ants, as well as to eliminate bed bugs (Cimex lectularius) and flies (Musca domestica).

Can I spray insecticide on my bed? ›

Don't use any insecticide on a mattress or bedding unless the product label specifically says it can be applied there.

Can you apply pesticide at night? ›

The best time of day to apply insecticide is in the early morning or evening when the temperature is cooler, and the wind is minimal. This helps to maximize the effectiveness of the insecticide and reduce the risk of drift.

How long does K-Othrine take to work? ›

Repeated treatment may be carried out as necessary up to a maximum of eleven applications per year. Effective up to 5 weeks. Repeated treatment may be carried out as necessary up to a maximum of eleven applications per year. Complete nest elimination is achieved within 1-2 weeks.

What is the strongest pesticide for bed bugs? ›

Pyrethroids are synthetic chemical insecticides that act like pyrethrins. Both compounds are lethal to bed bugs and can flush bed bugs out of their hiding places and kill them.

Is K-othrine harmful to humans? ›

If used at higher than recommended concentrations K-Othrine® WG 250 suspensions may cause transient irritation of the skin, eyes and nasal membranes.

What is the best option for killing bed bugs? ›

These bugs are pretty easy to kill with high heat at 115°F (46.11°C) or intense cold at 32°F (0°C). Here are a few ways to treat bedbugs using these methods: Wash bedding and clothes in hot water for 30 minutes. Then put them in a dryer on the highest heat setting for 30 minutes.

What pesticide was banned for bed bugs? ›

By the 1950s, many populations of bed bugs around the world were resistant to DDT. In 1956 pest control specialists started recommending that people stop using DDT for bed bugs and use different insecticides instead. DDT was banned in the United States in 1972 for health and environmental reasons.

What medicine is good for killing bed bugs? ›

Some commercially available chemicals can help get rid of bedbugs. Examples include pyrethrins, pyrethroids, desiccants, biochemicals such as cold-pressed neem oil, pyrroles, neonicotinoids, and insect growth regulators. In severe cases, or if other measures do not work, a person may need to control pest control.

How do you use Aqua K Othrine? ›

How to use: Dilute Aqua K-Othrine® with a suitable volume of water and apply as an ultra low volume (ULV) aerosol or thermal fog. It is not recommended to spray in the heat of the day. Avoid application outdoors when wind speeds exceeds 10kph, or during dust storms or rainfall.

How long does it take for deltamethrin to work? ›

When using a Deltamethrin-based product, it does not guarantee an instant kill. It can take up to 24 hours to kill the target pest but the active ingredient does have a long-time residual which can last up to 90 days, meaning you don't have to reapply as often unless you have a very large infestation.

Top Articles
Latest Posts
Article information

Author: Gregorio Kreiger

Last Updated:

Views: 6039

Rating: 4.7 / 5 (77 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Gregorio Kreiger

Birthday: 1994-12-18

Address: 89212 Tracey Ramp, Sunside, MT 08453-0951

Phone: +9014805370218

Job: Customer Designer

Hobby: Mountain biking, Orienteering, Hiking, Sewing, Backpacking, Mushroom hunting, Backpacking

Introduction: My name is Gregorio Kreiger, I am a tender, brainy, enthusiastic, combative, agreeable, gentle, gentle person who loves writing and wants to share my knowledge and understanding with you.