Description

Description

‘use strict’;
function initMiniSearch() {
return {
minSearchLength: 2,
isLiveSearchEnabled: 1,
suggestions: [],
validated: true,
suggest() {
const search = this.$refs.searchInput;
this.validated = true;
if (search.value.length >= this.minSearchLength && !this.isLiveSearchEnabled) {
this.fetchSuggestions(search.value);
} else {
this.suggestions = [];
}
},
fetchSuggestions(term) {
fetch(
window.BASE_URL + ‘search/ajax/suggest?’ + new URLSearchParams({q: term}),
{
headers: {
‘X-Requested-With’: ‘XMLHttpRequest’
}
}
)
.then(response => response.json())
.then(result => this.suggestions = result);
},
search(term) {
const search = this.$refs.searchInput;
term = term || search.value;
if (term.length < this.minSearchLength) {
this.validated = false;
} else {
this.validated = true;
search.value = term;
this.$refs.form.submit();
}
},
focusElement(element) {
if (element && element.nodeName === "DIV") {
element.focus();
return true;
} else {
return false;
}
}
}
}

path]:stroke-[1px] max-lgmd:text-white lgmd:[&>path]:stroke-[1.5px]” width=”23″ height=”23″ role=”img”>

search
Search

Minimum search query length is 2

Reviews (0)

Reviews

There are no reviews yet.

Be the first to review “Accu-Chek FastClix Finger Pricker”

Your email address will not be published. Required fields are marked *

More Products

KI KIDS CHESTY ROLL ON 50g

$12.78

KI KIDS CHESTY ROLL ON 50G Description Soothing chest roll-on specially formulated for children Helps ease breathing and provides comfort during colds or congestion Made with natural ingredients to gently support respiratory health Advice to use Apply generously to the chest, neck, and back as needed. Avoid contact with eyes and broken skin. Use only […]

BOIRON NUX VOMICA 200CH

$7.30

Boiron’s Tubes (or Single medicines) are known and registered by their Latin name, resulting in a common international nomenclature. In Canada, they are available in varying dilutions and have no mention of a therapeutic indication. These medicines may be used in the framework of individualized treatment that might involve different pathologies and are based on […]

Astroglide Sensitive Skin Gel Personal Lubricant 90mL

$10.93

Allergy testedLatex safeWater based Directions: Remove seal from tube opening before initial use. Apply liberally to area of body you wish to lubricate. Vary amount to achieve desired lubrication. Caution: Store at room temperature. Astroglide is extremely slippery – clean spills immediately. Keep out of reach of children. If irritation or discomfort occurs, discontinue use […]

Benylin All-In-One Cold And Flu Extra Strength Plus Mucus & Phlegm 24 Caplets

$14.24

Fast relief of: pain, fever, headache, mucus & phlegm, nasal congestion, dry cough, chills, sore throat pain. Dosage: Adult use only (12 years and older): Take 2 caplets every 6 hours. Do not take more than 8 caplets in 24 hours. Caution: Keep out of the reach of children. This package contains enough medication to seriously harm […]

Accrete D3 Film-Coated 600mg/400iu – 60 Tablets

$6.75

Do you need Accrete D3 supplements for extra calcium & vitamin D?
Chemist4U has a wide range of vitamin & mineral supplements available with speedy delivery
Always read the patient information leaflet before use.

Minadex MinaKIDS Ironbaby Drops – 60ml

$11.08

‘use strict’; function initMiniSearch() { return { minSearchLength: 2, isLiveSearchEnabled: 1, suggestions: [], validated: true, suggest() { const search = this.$refs.searchInput; this.validated = true; if (search.value.length >= this.minSearchLength && !this.isLiveSearchEnabled) { this.fetchSuggestions(search.value); } else { this.suggestions = []; } }, fetchSuggestions(term) { fetch( window.BASE_URL + ‘search/ajax/suggest?’ + new URLSearchParams({q: term}), { headers: { ‘X-Requested-With’: ‘XMLHttpRequest’ […]