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 “Adcal-D3 750mg/200IU – 112 Caplets”

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

More Products

Benylin Mucus & Phlegm Extra Strength Plus Cold Relief 180mL

$14.27

Fast, effective relief of: mucus & phlegm, chest congestion, sore throat pain, plus dry cough, nasal congestion and aches & pains. Dosage: Adults (12 years and over): 2 tbsp. (30mL) every 6 hours. Maximum 8tbsp. (120mL)/day. Shake well before using. Not recommended for children under 12 years.  Caution: Keep out of reach of children. This […]

Compeed Medium Blister – 5 Plasters

$8.13

What are Compeed Medium Blister Plasters?  Compeed Medium Blister Plasters provide instant pain relief from those troublesome blisters. Whilst forming a protective cushion, the plaster absorbs excess moisture and provides optimum healing conditions for foot blisters. Each plaster contains deep cushioning to relieve pressure and prevent painful rubbing, and ultra adhesive and tapered edges to […]

Dove Style + Care Extra Hold Hairspray 198g

$7.32

Extra Strong Hairspray Extra Hold 5  Protect your hairstyle and care for your hair with a long-lasting hairspray that strengthens and adds shine. Provides long-lasting shape control With Nutri-Style Complex Enhances natural shine Fights static and flyaways Protects hair against humidity and damp weather Extra-strong hold, fast-drying formula Formulated with Nutri-Style Complex, it leaves each […]

Numark A-Z Multivitamins & Minerals 50+ – 30 Tablets

$2.97

What are Numark A-Z Multivitamins 50+ tablets? Numark A-Z Multivitamins 50+ tablets are a daily food supplement designed with life over 50 in mind, supporting you every day wellbeing no matter what life brings. They’re vegetarian friendly, and free from sugar and yeast. These multivitamins contain no artificial colours, flavours, or preservatives.   Why would […]

IDEAL PROTEIN APPLE CINNAMON FLAVOURED OATMEAL – 1 BOX

$25.63

IDEAL PROTEIN APPLE CINNAMON FLAVOURED OATMEAL – 1 BOX Tart, Hearty. The ultimate comfort food. Warm up with this satisfying apple flavored oatmeal. Ingredients  Gluten-free rolled oats, Soy flour, Soy protein isolate, Milk protein concentrate, Whey protein isolate, Sea salt, Natural flavour, Cinnamon, Xanthan gum, Sodium bicarbonate, Stevia leaves extract, and Silicon dioxide. Allergen: Milk, […]

Sudafed Plus Blocked Nose Spray – 10ml

$8.79

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