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 “Piriton Allergy – 60 Tablets x 3”

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

More Products

Advil Pediatric Drops for Infants 24mL Grape Dye-Free

$10.59

Advil Pediatric Drops relieve fevers for up to 8 hours and works fast, so your baby can rest peacefully. They come with a SURE-DOSEâ„¢ oral syringe for precise and easy dosing. For ages 3 months to 3 years. TEMPORARILY REDUCES FEVER AND RELIEVES MINOR ACHES AND PAIN DUE TO: immunization earache colds sore throat Directions: […]

Esomeprazole Capsules

$14.63

For heartburn, acid reflux, GERD & more
Reduces excess stomach acid
For ages 12 and up
Always read the patient information leaflet before use

Replens Long-Lasting Vaginal Moisturizer and Lubricant, Replenish internal vaginal moisture, Immediate relief, Paraben free, Estrogen Free, Fragrance Free, 14 Applications, 35 g

$15.70

IMMEDIATE RELIEF – Replens Long-Lasting Vaginal Moisturizer provides immediate relief of dryness symptoms ENHANCES INTIMACY – Soft & silky feeling for continous pleasure CONTINUOUS MOISTURE – Unique bioadhesive delivers continuous moisture LONG LASTING – Each application lasts for 3 days, giving you freedom to be spontaneous ESTROGEN-FREE – Estrogen-free alternative to hormone treatment for vaginal […]

AgaMatrix WaveSense Jazz Blood Glucose – 50 Strips

$15.94

What are AgaMatrix WaveSense Jazz Blood Glucose Strips?  Correctly managing your diabetes is essential to maintaining good health, so don’t compromise on your testing strips. AgaMatrix WaveSense Jazz Blood Glucose Strips provide you with accurate, reliable results across a range of environmental conditions, in addition to minimising the effects of interfering factors so you can […]

Nurofen for Children Orange 200mg/5ml 7-12 Years – 100ml

$10.69

What is Nurofen for Children aged 7-12? Nurofen for Children is a pain relief medication designed for children aged 7-12. It’s twice the strength of other Nurofen for Children formulas, making it ideal for older children who need high doses of pain relief. This product comes in two delicious flavours: strawberry and orange. The handy […]

Calcichew D3 1000mg/800IU Once Daily Chewable – 30 Tablets

$16.85

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