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 “Peptac Peppermint Flavour Antacid – 500ml”

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

More Products

CYTO-MATRIX PANAX GINSENG 300mg 60vcaps

$22.24

CYTO-MATRIX PANAX GINSENG 300mg 60vcaps Description Contains 300mg of Panax ginseng root extract standardized to 4% ginsenosides per capsule Traditionally used to improve cognitive function, mood, energy, and physical performance Sustainably sourced and free of quintozene, a fungicide sometimes found in ginseng products Advice to use Adults – Take 1 capsule, 1–2 times per day […]

Speed Stick Deodorant Original 70g

$5.46

Pharmacy Home Delivery Online Shopping Skin Care Medicine Health Beauty Women’s Health Contraception Virtual Care Headache Pain Back Pain Pain Relief First Aid Sanitizer Upset Stomach Diarrhea Vitamins Acid Reflux Heartburn Allergies Quit Smoking Cough Flu Sunscreen Diabetes Rash Laxative Probiotic

Jamieson Vitamin D 1000IU 200+ 40 Tablets

$11.66

Supports a healthy immune system and bone health. Directions: Adults: Take 1 tablet daily. Store between 15°C and 25°C, away from children. Each tablet contains:Vitamin D3 (Cholecalciferol) – 25mcg/1000IU Also contains: Cellulose, dicalcium phosphate, vegetable magnesium stearate. SKU: 06464205254

Hemovel 18 Tablets

$15.34

Recommended Use: Relieves the symptoms associated with hemorrhoids such as pain, edema (swelling) and bleeding. Helps to reduce the duration and severity of hemorrhoids. Dosage: Adults: Swallow 1 tablet, 3 times daily, for 4 days, then 1 tablet, twice daily for 3 days. Consult a health care professional for use beyond 7 days. Medicinal Ingredient: […]

Robitussin Cough & Cold Plus Mucus & Phlegm Relief Extra Strength

$15.70

Relieves:Dry CoughsChest CongestionStuffy NoseSoothes Throat Dosage: Adults (12 years & over): 2 teaspoons (10mL). Children under 12 years: Do not use. Take every 6 hours or as directed by a doctor. Maximum 4 doses/day. Caution: Keep out of reach of children. This package contains enough medication to seriously harm a child. Do not exceed the […]

FreeStyle Libre 3 PLUS Sensor

$108.17

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