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 “Chlorphenamine 4mg – 84 Tablets”

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

More Products

Embecta Alcohol Swabs 100

$3.65

(formerly BD alcohol swabs) Single use onlyIsopropyl alcohol 70% by volumeIndividually Foil WrappedConvenient to Use Use: For skin cleaning prior to injection. Directions: Rub skin briskly in a circular motion from injection site outward.  Caution: External use only. In the event of skin irritation or rash, discontinue use. Avoid contact with eyes; if contacted, flush […]

Mysimba Prolonged Release Tablets

$135.22

Weight loss tablets
Helps reduce food cravings
For those with a BMI of 30 or over
Always read the patient information leaflet before use

NEW ROOTS VITAMIN E8 400IU 120sg

$38.71

New Roots Herbal’s Vitamin E⁸ contains all eight forms of vitamin E—four tocopherols and four tocotrienols—with squalenes, beta-sitosterols, all non-⁠GMO certified.   Vitamin E is one of the great fat-soluble antioxidants; it is able to go where ordinary water-soluble antioxidants cannot. Vitamin E helps stop oxygen in red blood cells from turning into harmful peroxides. As well, it […]

NEW ROOTS WILD OMEGA-3 EPA 660mg DHA 330mg 120sg

$40.33

Molecularly distilled, pharmaceutical-grade, pure fish oil sourced only from anchovies and sardines. High-potency Wild Omega EPA 660 mg DHA 330 mg fish oil helps improve cognitive function, supports heart health, and reduces inflammation. Fish oil is probably the most important dietary source of omega-⁠3 fatty acids, which are vital nutrients. Omega-⁠3 fatty acids are one […]

Nurofen For Children Strawberry 100mg/5ml – 100ml

$5.87

What is Nurofen Baby? Nurofen Baby is a liquid medicine that can help to reduce pain, inflammation and symptoms of fever in children aged 3 months and over. It is the perfect pain relief from a range of symptoms and the handy dosing syringe makes this product easy to administer. What kind of pain can […]

Benadryl Allergy Relief – 24 Capsules – 6 Pack

$65.56

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