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 – 90 Tablets”

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

More Products

Creon 10,000ui Capsules – Pack of 100

$41.91

Creon 1000ui Capsules – Pack of 100
Pancreatic enzyme supplement 
Easy – to – administer capsules

PREFERRED NUTRITION BERBERINE 500mg 120vcaps

$36.06

Berberine is a yellow-coloured component in plants such as barberry (which this type is derived from) and goldenseal which has been used in traditional medicine in Asia for millennia. Modern research has shown Berberis vulgaris can increase the production of insulin receptors in our cell membranes, which likely accounts for why it’s been found to […]

Gaviscon Double Action Liquid Aniseed – 500ml

$21.82

What is Gaviscon Double Action Liquid?  Gaviscon Double Action Liquid is an all in one remedy for both indigestion and heartburn. This medicine works for up to four hours, helping to ease indigestion and symptoms like wind and bloating. If you’re suffering from indigestion or acid reflux and need a way to ease your symptoms […]

NEW ROOTS PAU D’ARCO TAHEEBO 500mg 100cap

$13.51

Pau d’arco is an herb known by many names. The reason for this is simple: it was a deeply prized herb known by many of the indigenous tribes of South America. They were well aware of pau d’arco’s numerous health benefits and used for health problems. Pau d’arco tea or tincture concoctions have had beneficial […]

Minadex Multivitamin Gummies – 60 Gummies

$13.24

Buy Minadex Multivitamin Gummies – 60 Gummies  Minadex Multivitamin Gummies contain essential vitamins C, D3, E, B-complex, biotin, and folic acid to support immune function, energy metabolism, and overall wellness.  Key nutrients work together to strengthen immune defences, promote healthy bones, boost energy levels, and support healthy hair and skin maintenance.  Directions  Always take Minadex […]

Ovesse 1mg/g Vaginal Cream – 15g Tube + Applicator

$25.14

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