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 “Treathay Fexofenadine 120mg – 30 Tablets”

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

More Products

Sanatogen A-Z Complete Multivitamin – 90 Tablets

$18.38

What are Sanatogen A – Z Multivitamins? Sanatogen A – Z Multivitamins are designed to help busy adults to get all of the nutrients they need to be as healthy as possible. When you’re on the go, it can be difficult to ensure that your diet meets all of your nutritional needs, which is where […]

BOIRON ARNICA MONTANA 30CH 80pellets

$7.30

Boiron Arnica Montana is a 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. Boiron’s Tubes (or Single medicines) are known and registered by their Latin name, resulting in a common international nomenclature. […]

Nelsons Arnicare Arnica Cream – 30g

$7.15

What is Nelsons® Arnica Cream? Nelsons® Arnica Cream is a traditional herbal medicine for treating bruises. The caring formula is natural and contains the active ingredient Arnica Montana which can provide symptomatic relief for bruises. Nelsons® Arnica Cream is a great product to keep in your medicine cupboard or first aid kit for everyday bumps […]

Lemsip Cold & Flu Lemon – 10 Sachets

$6.28

Do you need Lemsip Cold & Flu sachets to ease your cold & flu symptoms? Chemist 4 U has a wide range of Lemsip products available with fast, discreet delivery

GlucoRx Nexus Blood Glucose Meter

$18.92

What is the GlucoRx Nexus Blood Glucose Meter? GlucoRx Nexus is a sleek, all-round blood glucose meter that facilitates simple management of diabetes. Key features include no coding, 0.5µL blood volume for a reaction in 5 seconds, before/after (AC/PC) tagging, AST, ketone warning, strip ejection, large non-deletable memory, day averages, alarm reminders, discreet testing and […]

LMX4 Dispensing Pack – 12 x 5g Cream and 24 Waterproof Dressings

$87.89

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