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 “Benylin 4 Flu – 24 Tablets”

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

More Products

PROVITA NATTOKINASE 2000FU 60caps

$23.16

Nattokinase (NK) is a potent blood-clot dissolving protein produced by the bacterium Bacillus subtilis during the fermentation of soybeans to produce Natto. Extensively used in Japan, Korea and China to treat cardiovascular disease, it has been recently recognized by Western medicine for its potent fibrinolytic (anti-clotting/antithrombotic) capacity. Nattokinase can dissolve formed thrombi and also prevent […]

Vicks DayQuil Complete VapoCool Cold & Flu 24 Coated Caplets

$15.67

Vicks DayQuil COMPLETE plus Vicks VapoCOOL Cold and Flu Medicine, Caplets, Daytime, Non-Drowsy relief for Cough, Fever, Sore Throat Pain, Sinus congestion, Sinus Pain, Chest Congestion, 24ct Temporarily relieves cold and flu symptoms: minor aches & pains, fever, nasal congestion, sinus pressure, cough, chest congestion, thins & loosens mucus, cough with phlegm, sore throat, pain, […]

Novofine Pen Needles 31g 6mm (x100)

$25.27

What are NovoFine Pen Needles?  NovoFine Pen Needles are thin needles designed for less pain and to fit most pen injector devices. These needles are 6mm in length and, with SuperFlow™ technology, are designed to enhance flow rates and reduce dosage force. How to use these needles Start by thoroughly washing and drying your hands. […]

METAGENICS ULTRAINFLAMX PLUS 360 MANGO 616g

$89.70

Non-Medicinal Ingredients: Isomaltooligosaccharides, rice bran, sugarcane juice, sunflower oil, medium-chain triglycerides, natural flavour, silicon dioxide, xanthan gum, monk fruit extract, guar gum, and rosemary extract. Recommended Dose: Adults blend (for no longer than 15 seconds), shake, or briskly stir 2 level scoops (44 grams) of UltraInflamX Plus 360° with 237 mL (8 fl. oz.) of […]

FreeStyle Lite Blood Glucose Monitoring System

$32.14

Tiny Sample SizeSmall and Discreet MeterNo Coding Required Use only with FreeStyle Lite Test Strips For in vitro diagnostic use only. ZipWik Tabs: Easier, Faster Blood Application; Reapplication up to 60 seconds; Tiny Sample Size – Only 0.3μl; Gentle Testing. Easy-to-Use Strip with ZipWik TabsMultiple Test SitesSmall and Discreet MeterNo Coding Required Contents:  1 FreeStyle […]

Almus Ibuprofen and Codeine 200mg/12.8mg – 24 Tablets

$8.51

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