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

Sudafed Congestion and Headache Relief Max Strength – 16 Capsules

$6.41

Contains 16 Sudafed Max Strength capsules.
Ideal for those looking for relief from congestion and headaches.
Helps to relieve pain, tiredness and congestion caused by sinusitis.

Band-Aid Large Rolled Gauze

$6.57

Kling DesignSecures to itself to stay in place.Stretches to provide freedom of movement for hard to bandage areas Ideal for securing gauze pads or non-stick pads onto hard-to-bandage areas, minor post-surgery recoveries or as a primary dressing. Latex free. Sterile unless individual wrapper is opened or damaged. In case of deep or puncture wounds, or […]

Option+ Vitamin C Chewable Tropical Flavour 500mg 120 Tablets

$7.30

Indications: Helps in the development and maintenance of bones, cartilage, teeth and gums. Helps in wound healing. Helps to support immune function. Dosage: Adults: 1-3 tablets daily with a meal or as recommended by a physician. Medicinal Ingredients: Each tablet contains:Vitamin C (sodium ascorbate/ascorbic acid) – 500mg Non-Medicinal Ingredients (in descending order): Sorbitol, hydroxypropylcellulose, natural orange flavour, annatto, […]

Nutripur Menodause – Menopausal formula, 60 vegetarian capsules

$18.30$46.00

All natural formula made with essential nutrients beneficial for the relief of menopausal symptoms and for the general well-being of women during menopause and perimenopause Relieves menopausal symptoms such as hot flashes, night sweats, irritability, vaginal dryness, sleep problems, lack of energy, etc Used in herbal medicine to help ease nervous tension (calmative). Hormone normaliser […]

HARMONY MENOPAUSE MAX 60tabs

$32.88

Harmony Menopause Max (60 Tablets) Harmony Menopause Max is a high potency herbal medicine which only contains 4 of the 6 herbs used in the original formulation Harmony Menopause but at higher dosages. It is a stronger formulation to relieve the symptoms of menopause, specifically hot flushes and night sweats. It helps to build reserves […]

Benylin Mucus Cough Max Menthol – 150ml

$8.95

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