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

GARDEN OF LIFE SPORT ORGANIC PLANT-BASED PROTEIN CHOCOLATE 840g

$45.57

Quick Overview: 30g organic plant-based protein 5.5g BCAAs 5g Glutamine & Glutamic Acid High Antioxidant Blend Organic Muscle Recovery Blend 2 Billion CFU B. lactis Bl04 Organic Plant-Based Protein offers a blend of certified organic proteins from multiple sources, featuring U.S. grown organic peas, to give it a great smooth and creamy texture. Then we […]

POLYSPORIN® ECZEMA ESSENTIALS® 1% HYDROCORTISONE ANTI-ITCH CREAM

$11.30

GET RELIEF FROM DRYNESS, FLAKING AND REDNESS ASSOCIATED WITH ECZEMA FLARE-UPS. Provides relief of itch due to eczema flare-ups Moisturizes to restore visibly healthier skin Helps improve dryness, flaking and redness associated with eczema Fragrance-free Does not contain antibiotics Available in a 28g tube Product Description: Provides relief of itch due to eczema flare-ups Moisturizes […]

Dove Clinical Protection Original Clean 45g

$10.20

Nourish underarm skin with an extra effective Antiperspirant that’s dermatologically tested to be kind on skin. • Dermatologically tested• Clinical strength Antiperspirant for our most effective protection• Contains ¼ moisturizing cream for great underarm care• Gives up to 48 hours of odour protection Ingredients: Cyclopentasiloxane, Aluminum Zirconium Trichlorohydrex Gly, Dimethicone, Paraffin, Cera Microcristallina, Fragrance, Silica, […]

Option+ Antacid Calcium Supplement Extra Strength Assorted Berries 750mg 100 Chewable Tablets

$4.37

For Antacid Relief: For relief of indigestion, heartburn and sour stomach caused by excess stomach acidity. Recommended Dosage Adults and Pregnant Women: Chew 2-3 tablets as needed. Maximum: Adults: 10 tablets/day. Pregnant women: 5 tablets/day. Consult a health care practitioner if symptoms persist beyond two weeks or recur. As a calcium supplement: This product is […]

Zarbee’s Cooling Throat & Immune Support Lozenge – 36 Lozenges

$10.80

Buy Zarbee’s Cooling Throat & Immune Support Lozenges Zarbee’s Cooling Throat & Immune Support Lozenges are the perfect way to calm and cool your irritated throat when you have a pesky cough or cold. The honey-based lozenges have a delightful taste and provide immune system support.    How Zarbee’s Cooling Throat & Immune Support Lozenges […]

Gina 10 Micrograms Vaginal Tablets – 24 Pack

$39.20

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