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

Boost Plus Calories Vanilla 6x237ml Units

$13.87

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

NATURAL FACTORS NEM 500mg 30vcaps

$20.78

NATURAL FACTORS NEM 500mg 30vcaps Description • Provides Natural Eggshell Membrane (NEM), a clinically studied ingredient derived from eggshell membrane• Naturally contains collagen, elastin, hyaluronic acid, and glycosaminoglycans• Commonly used to support joint comfort, flexibility, and mobility• Helps support connective tissue health as part of an active lifestyle• Single-ingredient, targeted formula delivering 500 mg per […]

AOR ORTHO CORE 823mg 180caps

$57.61

AOR ORTHO CORE 823mg 180caps AOR Ortho Core is an advanced, balanced, and comprehensive multi-vitamin/mineral supplement. Ortho Core contains a broad spectrum of vitamins, minerals, antioxidants and other factors for the maintenance of good health and to help the body metabolize carbohydrates, fats and proteins. Learn more about AOR Supplements by reading the AOR brand review. Benefits: Simply […]

METAGENICS BIOPURE PROTEIN 345g

$55.03

Source of essential amino acids involved in muscle protein synthesis Serving Size: 2 Scoops (23 g) Ingredient Amount Daily Value Calories 100    Fat 3 g    Sodium 45 mg    Carbohydrate 2 g    Whey Protein 8 g    Calcium (found in whey) 85 mg    Phosphorus (found in whey) 75 mg    Potassium […]

DERMAMED MOBILITY BALM ARTHRIDERM 60ml

$19.68

DERMAMED MOBILITY BALM ARTHRIDERM 60ml Description DermaMedâ„¢ Mobility Balm uses innovative Phyto Technology to quickly relax and soothe areas of discomfort. Effective for relieving discomfort, it contains natural ingredients such as Devil’s Claw and Glucosamine Sulfate to help reduce inflammation and improve mobility. Non-irritating and safe for external use. Advice to use Apply to affected […]

Numark Cold Sore Patches – 15 Patches

$4.45

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