$197.02

FreeStyle Libre 2 Sensor – Pack of 3

Category:
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 “FreeStyle Libre 2 Sensor – Pack of 3”

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

More Products

Saxenda Weight Loss Pens

$507.11

Liraglutide weight loss injections
Reduces appetite
Helps you feel fuller for longer
Just one injection a day
Always read the patient information leaflet before use

Nexcare Sensitive Skin Adhesive Pads 4

$10.95

Pain-Free removal, yet holds securely.Hypoallergenic adhesive. Directions for Use:1. Clean and dry wound and surrounding skin thoroughly.2. Apply adhesive pad over wound. Do not stretch adhesive pad when applying.3. Firmly smooth adhesive border to skin. Directions for Removal: Gently lift the edge of adhesive pad and slowly peel from the skin in the direction of […]

BOIRON HYPERICUM PERFORATUM 200CH 80pellets

$7.30

BOIRON HYPERICUM PERFORATUM 200CH 80pellets 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 […]

Otrivin Medicated Cold & Allergy Relief Mist Spray 30mL

$11.68

Unblocks your nose within minutesLasts for up to 10 hoursSoothes dryness and irritation For long-lasting, temporary relief of nasal and sinus congestion due to colds, allergies and hayfever. Also relieves runny nose. Directions: Adults & children 2 years and older: Blow the nose prior to administering. With head slightly tilted backward, spray 2 times into each […]

Mefenamic Acid Tablets

$53.51

Mefenamic acid can relieve period pain as well as headaches, toothache and muscular pain.
Can also reduce excessive menstrual bleeding. 
Non-steroidal anti-inflammatory drug (NSAID).
Always read the patient information leaflet before use. 

Numark Mentholated Bronchial Balsam – 200ml

$3.10

‘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’ […]