$10.42

Solpadeine Max (Codeine/Paracetamol) – 24 Tablets

Category:
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 “Solpadeine Max (Codeine/Paracetamol) – 24 Tablets”

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

More Products

Buy Triferexx 150 | Gentle & High-Strength Iron Supplement Trusted in Canada

$19.99

Shop Triferexx 150 for a powerful yet gentle iron supplement (150 mg per capsule). Trusted in Canada for over 20 years, it supports healthy iron levels without stomach upset or unnecessary additives. Available in easy-to-use 30 or 100 capsule bottles, order today.

DayQuil Complete Cold & Flu Liquid 236mL

$13.51

All in One Effective 12 Symptom Relief: Nasal congestion & pain, Fever, Sore Throat Pain, Thins & Loosens Mucus, Cough due to cold.Additional Symptom Relief of: Sinus Congestion & Pain, Relieves cough with phlegm, Minor Aches & Pains, Headache, Chest Congestion. Directions for use: Use tablespoon (tbsp) or dose cup. Adults (12 years and over): […]

Optrex Eye Wash 110mL

$7.30

Effective against redness, smarting and mild congestion of the eyes and eyelids due to light, wind, dust, smoke or other pollutants. Caution: Keep out of reach of children. Should not be administered to infants or children under 3 years of age. Discard 3 months after first opening. Not suitable for use with hydrophilic (soft) lenses. […]

RICOLA LEMON MINT NSA THROAT LOZENGES 45loz

$8.03

  LEMON MINT SUGAR FREE Medicinal ingredients: Each lozenge contains:Menthol 1.1mg Non-medicinal ingredients: ascorbic acid (vitamin C), aspartame, citric acid, extract of lemon balm and a Ricola herb mixture (elder, horehound, hyssop, lemon balm, linden flowers, mallow, peppermint, sage, thyme, wild thyme), isomalt, natural color (beta-carotene), natural flavor. Recommend use or purpose: For the temporary relief of […]

Dove Men+Care Elements Body + Face Wash 400mL

$6.92

Developed specifically for men’s skin.

Micro Moisture
Activates on skin, clinically proven to fight skin dryness.
With a cooling agent
Easy to rinse
A fresh, clean feeling
Dermatologist Recommended Brand

Benylin Mucus Cough Max Menthol – 150ml

$9.05

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