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 “Paracetamol 500mg – 24 Soluble Tablets”

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

More Products

NEW ROOTS KELP 225mg 300tabs

$16.80

NEW ROOTS KELP 225mg 300tabs A natural source of iodine, which helps with thyroid function. Kelp is a type of seaweed with a high content of iodine, which makes it a very good remedy to maintain the proper function of the thyroid and other glands. DIRECTIONS OF USE Adults: Take 1–2 tablets daily with meals or as […]

NEW ROOTS VITAMIN D3 2500IU 15ml

$8.37$9.84

Helps to prevent vitamin D deficiency When combined with sufficient calcium, a healthy diet, and regular exercise, may reduce the risk of developing osteoporosis Convenient liquid drops Each drop of Extra Strength Vitamin D3 contains 2,500 IU With each drop of Extra Strength Vitamin D3, you get the equivalent of 2,500 IU of this critical vitamin for bone health. Equipped […]

Jamieson Vitamin C + D 75 Chewable Tablets Tart Morello Cherry

$10.95

Supports a healthy immune system.Your Vitamin C&D needs combined in one tasty chewable tablet!  Directions (Adults): Chew 1-2 tablets daily. Store between 15°C and 25°C, away from children. Each tablet contains:Vitamin C (Ascorbic acid) – 500mgVitamin D3 (Cholecalciferol) – 12.5mcg/500IUSupporting botanical blend – 7mgDerived from rutin (Dimorphandra mollis, pod), hesperidin (citrus sinensis, fruit), citrus bioflavonoids (citrus […]

IDEAL PROTEIN ORANGE CREAMSICLE FLAVOURED BAR – 1 PC

$4.56

IDEAL PROTEIN ORANGE CREAMSICLE FLAVOURED BAR – 1 PC Oh SO Dreamy! A timeless treat with a pop of orange and sweet vanilla. Classic taste with a collagen boost (3g Collagen/bar) Ingredients  Protein blend (soy protein isolate, acid casein, milk protein concentrate, milk protein isolate, whey protein isolate), vegetable oil (palm kernel, palm, sunflower, corn), […]

Accu-Chek Instant Blood Glucose System

$39.20

What is the Accu-Chek Instant Blood Glucose Meter?  The Accu-Chek Instant system makes testing easy and understanding your results simple. This blood glucose meter provides an instant view on a large backlit display to see whether your results are high, low or in-range. The Accu-Chek Instant system even features a test strip ejector for easy, […]

Peptac Peppermint Flavour Antacid – 500ml

$9.97

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