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 “Loratadine 10mg – 180 Tablets”

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

More Products

Good Clean Love BioNude Ultra Sensitive Personal Lubricant, Unscented, Water-Based & Hypoallergenic Lube, Intimate Wellness Gel for Men & Women, 88mL (3 fl oz)

$14.22

WATER-BASED & HYPOALLERGENIC: Formulated to emulate your body’s natural lubrication, BioNude used plant cellulose as a thickening agent. BioNude was created for people who told us they want a body-friendly lube for skin that is sensitive to certain organic and natural ingredients like aloe vera. So, we mixed water and a different science-lab sounding ingredient […]

Sudocrem Antiseptic Healing Cream – 125g

$7.69

What is Sudocrem and when is it used? Sudocrem is an antiseptic healing cream that treats and soothes various skin conditions like nappy rashes, eczema, bed sores and more. The antiseptic cream consists of a water-repellent base that forms a protective film thus preventing the skin irritants like moisture, detergents, urine and stools coming in […]

Fixodent Plus Premium Denture Adhesive Cream – 40g

$5.40

Buy Fixodent Plus Premium Denture Adhesive Cream Fixodent Plus Premium Denture Adhesive Cream is the perfect way to keep your dentures secure.  The unbeatable hold and concentrated formula steadily releases adhesive agents to ensure you reach the end of the day with 88% of the initial holding power. It provides you with a hold 10x […]

BOIRON HEPAR SULFURIS CAL 200CH 80pellets

$7.30

Boiron’s Tubes (or Single medicines) are known and registered by their Latin name, resulting in a common international nomenclature. In Canada, they are available in varying dilutions and have no mention of a therapeutic indication. These medicines may be used in the framework of individualized treatment that might involve different pathologies and are based on […]

Revlon Colorstay Lipliner

$9.49

Lush, lasting lip liner. All the rich color and long-wearing definition you love, in new shades and an updated formula.  Our newly updated ColorStayâ„¢ Longwearing Lip Liner provides lasting color and definition, helps lip color stay put longer, and helps prevent bleeding and feathering. You get rich color and definition for hours upon hours with […]

Codasolve 8mg/500mg/30mg Effervescent Tablets – 32 Tablets

$9.49

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