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

Acidex Original Sugar Free Oral Suspension Peppermint – 500ml

$7.98

Do you need Acidex Original liquid to relieve heartburn and acid reflux? Chemist4U has a wide range of heartburn relief available with speedy delivery

Buscopan IBS Relief – 40 Tablets

$15.38

What are Buscopan IBS Relief Tablets? Buscopan IBS Relief tablets help to ease symptoms of Irritable Bowel Syndrome, such as stomach cramps and discomfort. Take just one tablet three times a day to ease your discomfort during flare-ups, helping you to feel more comfortable.   What is Irritable Bowel Syndrome (IBS)? Irritable Bowel Syndrome, also […]

Murine Ear Wax Removal System 15mL

$8.76

For effective relief of ear wax build-upEar drops to loosen wax gentlyEar washer to flush ear completely. Directions: (For adults and children over 12 years of age). Add 5 to 10 drops to ear with head tilted and leave in the ear for several minutes; any wax remaining may be removed by gently flushing the […]

Batiste Instant Hair Refresh Dry Shampoo Original 200mL

$9.13

Clean & Classic Original World’s #1 Dry Shampoo Brand Say hello to a citrusy and refreshing burst of orange and bergamot, balanced by hints of rose, lily, lavender and powdery musks. This soapy scent leaves hair smelling squeaky clean. Batiste Original. Adored by innovators and originators, it’s the classic dry shampoo that instantly makes your […]

BEEKEEPER’S NATURALS THROAT RELIEF PROPOLIS 30ml

$13.51

Beekeeper’s Naturals premium natural bee propolis throat spray is made with propolis sustainably sourced from remote Canadian apiaries. This alcohol-free throat spray is your go-to for sore throats and immune support. Propolis is the substance the bees make to protect their hive and keep it germ-free. It has been used globally for centuries in herbal […]

Paracetamol 500mg – 10 Suppositories

$9.35

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