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 “Cetirizine 10mg – 30 Tablets”

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

More Products

Option+ Multivitamins & Minerals Women 50+ with Lutein Dye Free

$12.39

Helps to maintain eyesight, skin, immune function and proper muscle function. Helps tomaintain the body’s ability to metabolize nutrients. Directions for use: Adults aged 50 and up: 1 tablet daily with meals, a few hours before or after taking other medications or natural health products, or as recommended by a physician Each tablet contains:Vitamins:Vitamin A […]

Numark Mucus Cough – 200ml

$4.04

Buy Numark Mucus Cough  When a chesty cough takes hold, Numark Mucus Cough gets to work loosening that stubborn phlegm. This easy-to-take solution contains guaifenesin, an expectorant that helps thin and loosen mucus, making it easier to clear from the chest—no more struggling with thick phlegm that won’t budge.  Directions  Take 5-10ml every 2-3 hours. […]

Jamieson Vitamin B12 + B12 Folic Acid 90+20 Tablets

$12.78

Converts carbs, proteins and fats to energy. Directions (Adults): Take1 tablet. Store between 15°C and 25°C, away from children. Each caplet contains:Vitamin B6 (Pyridoxine HCl) – 75mgVitamin B12 (Cyanocobalamin) – 150mcgFolate (folic acid) – 800mcg Also contains: Cellulose, modified cellulose gum, vegetable stearic acid, vegetable magnesium stearate, silica, dicalcium phosphate.

BOIRON KALIUM CARBONICUM 30ch

$7.30

BOIRON KALIUM CARBONICUM 30ch Homeopathic relief that is targeted to your symptoms. The pellets are unflavored and melt in your mouth. Easy to take, this homeopathic medicine is suitable for the whole family, adults and children. Ingredients: Each tube contains 4g (approximately 80 pellets) Non-medicinal ingredients: Sucrose and lactose How to use: Adults, children and […]

Polysporin Triple 3 Antibiotics Ointment

$10.57

Prevents infection of minor wounds such as cuts, scrapes, burns, blisters, nicks and scratches. Directions:1. CLEAN: Clean affected area.2. TREAT: Apply Polysporin Heal-Fast Formula to the area 1-3 times daily.3. COVER: Apply a bandage. Cautions: For external use only. Avoid contact with eyes. If this occurs, rinse thoroughly with water. Do not use over large […]

FreeStyle Libre 2 PLUS Sensor – Pack of 3

$203.64

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