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 “Covonia Night Time Formula – 150ml”

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

More Products

Spectro Skin Care Cleanser for Dry Skin 500ml

$15.33

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

Dymista Nasal Spray Suspension

$26.35

Nasal spray to relieve hay fever and allergy symptoms
Contains azelastine hydrochloride, an antihistamine, and fluticasone propionate, a corticosteroid.
Always read the patient information leaflet before use. 

TRESemmé Clean & Natural Gentle Hydration Shampoo 828mL

$10.20

Gentle Hydration with Vitamin C & E Professional Quality Our Clean & Natural Gentle Hydration Shampoo delivers gentle hydration to hair, keeping it moisturized and soft because sometimes simple is best How to gently cleanse and hydrate with hair shampoo: Coat hair with generous amount of TRESemmé shampoo. Gently massage scalp and roots with fingertips, […]

Jamieson Cod Liver Oil 100 Softgels

$10.95

Omega-3, Vitamin A&D Immune Support. Directions (Adults): Take one softgel twice daily. Store between 15°C and 25°C, away from children. Each tablet contains:Cod Liver Oil (Gadus morhua) – 300mg     Providing:          Omega-3 fatty acids:               Eicosapentaenoic acid (EPA) – 27mg              […]

Optrex Hayfever Eye Drops – 10ml

$8.51

What are Optrex Hayfever Eye Drops? Optrex Hayfever Eye Drops are a treatment for hay fever symptoms that affect your eyes, including redness, watering, and itching. If you’re sick of pollen season leaving you looking like you’re crying, if your eyes are streaming and ruining your makeup, or if the itching is driving you crazy, […]

Sudafed Decongestant Non Drowsy – 12 Tablets

$6.21

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