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 “Almus Hay Fever 2% Eye Drops – 10ml”

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

More Products

Deep Relief Heat Spray 150mL

$10.20

Indications: For temporary relief of aches and pains of muscles and joints associated with simple backache, sprains, strains, and arthritis. Directions: For adults and children 2 years of age and older. On first application apply thinly and evenly as people may experience warmth differently. If stronger effect is desired, reapply as needed up to 4 times per day. […]

BOIRON BRYONIA 30CH

$7.30

Bryonia is mainly used for muscle and joint pain. The common name for Bryonia is White Bryony. (Use only with the guidance of a Homeopathic or Naturopathic practioner). Benefits: Natural homeopathic remedy Prescribed for rheumatism Safe and effective Ingredients   Active Ingredient: Bryonia 30CHInactive Ingredients: Lactose, sucrose Directions Adult and children 2 years of age and older: […]

Orajel Mouth Gel – 5.3g

$5.34

What is Orajel Mouth Gel? Orajel Mouth Gel is designed to help to relieve pain, irritation, and discomfort caused by mouth ulcers or wearing dentures. It’s quick and easy to apply, relieving pain wherever you need it, whenever you need it. If you need pain relief which will remain effective until you can see a […]

Tums Ultra Strength 1000mg 72 Tablets

$6.19

Uses: fast heartburn relief; sour stomach; acid indigestion caused by excess stomach acidity. Directions: Antacid: Adults and pregnant women: Chew 2-3 tablets as needed. Maximum daily dose: Adults: 8 tablets. Pregnant women: 5 tablets. Medicinal Ingredient: 1000mg calcium carbonate/tablet.Non-Medicinal Ingredients:Peppermint: (alpha) corn starch, mineral oil, natural peppermint flavour, sodium hexametaphosphate, sucrose, talc.Assorted fruit: (alpha) adipic acid, artificial […]

PROGRESSIVE MULTIVITAMIN PRENATAL 120cap

$35.07

PROGRESSIVE MULTIVITAMIN PRENATAL 120cap Description Designed to support women from conception through nursing, this prenatal multivitamin provides essential nutrients including folic acid, vitamin D3, and DHA. Combines whole food concentrates, ginger, cranberry, and plant-based nutrients to support maternal health and fetal development. Gluten-free, with no artificial colours, flavours, or preservatives, and formulated for optimal absorption […]

Beclometasone Hay Fever Relief Nasal Spray – 180 Dose – 3 Pack

$37.46

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