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 6”

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

More Products

Benylin Chesty Coughs Original – 300ml

$14.59

Contains 300ml bottle of Benylin Chesty Coughs medicine.
Perfect for those looking for relief from chesty coughs.
Helps to ease coughs so you can breathe easy again.

Tylenol Extra Strength Flu Daytime 20 EZTabs

$9.11

Nasal Congestion; Dry Cough; Fever; Aches & Pain Dosage: Adult Use Only (12 Years and Over): 1-2 tablets every 4 hours as needed. Do not exceed 8 tablets per day.  Caution: Keep out of reach of children. This package contains enough medication to seriously harm a child. Use the smallest effective dose. Use only on the advice […]

NATURE’S WAY SAMBUCUS FOR KIDS ELDERBERRY 120ml

$11.68

Nature’s Way Kids Sambucus Cold and Flu Care Syrup is traditionally used in Herbal Medicine to help relieve symptoms of colds and flus. The delicious tasting syrup is formulated for kids with each teaspoon containing 25 mg of Black Elder, 1.5 mg of Propolis and 0.104 ml of Echinacea Complex extract. The Standardized Elderberry also […]

PASCOE LYMPHDIARAL CREAM 40g

$26.66

Lymphdiaral® Drainage-Cream – The Only Pain Relief Cream You’ll Ever Need! Lymphdiaral® Drainage-Cream is a homeopathic remedy used to relieve symptoms of swelling and inflammation such as pain, fever and swollen lymph nodes due to injury or recurring conditions such as earaches, tonsillitis and sinusitis. It has been used worldwide for over 40 years and has […]

Latex Finger Cots 24

$4.38

Natural latex rubber provides a comfortable fit and sensitive touch.Strong and durable. Ideal for: Keeping wounds clean – wear to protect bandages from dirt and water. Inserting suppositories. Apply medication to open wounds. And many other hygiene uses. Directions for use:1. Place finger to be covered in the center of finger cot with roll facing […]

FreeStyle Libre 2 Sensor – Pack of 2

$132.11

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