$16.89

Migraleve Pink (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 “Migraleve Pink (Codeine/Paracetamol) – 24 Tablets”

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

More Products

IDEAL PROTEIN ROTINI PASTA – 1 BOX

$25.53

IDEAL PROTEIN ROTINI PASTA – 1 BOX Wholesome, Comforting. Please your palate. No need to give up pasta with this guilt-free alternative. Ingredients  Pea protein isolate, wheat protein isolate, modified wheat starch, inulin, dried egg yolks, sodium phosphate, lactic acid, sulfites. Warnings   If you are allergic to any ingredients, discontinue use.  Disclaimer  Please note that […]

Robitussin Children’s Cough & Cold Bedtime Cherry Flavour Dye Free 100mL

$8.38

Relieves:Dry CoughsRunny NoseSneezingStuffy Nose Dosage: Children 6 to under 12 years: 2 teaspoons (10mL). Children under 6 years: Do not use. Take every 6 hours or as directed by a doctor. Maximum 6 doses/day. Caution: Keep out of reach of children. This package contains enough medication to seriously harm a child. Do not exceed the […]

NATURAL FACTORS L-GLUTAMINE MICRONIZED 300g

$21.14

Feature summary L-glutamine is an amino acid essential for recovery after strenuous exercise or critical illness. Following heavy or prolonged exercise it protects muscle tissue and supports muscle growth. Natural Factors Micronized L-Glutamine provides an easier form of glutamine for the body to absorb. It has no taste and mixes easily into water. Main selling […]

Jamieson Vitamin B50 Complex 90+30 Caplets

$16.79

Converts carbs, proteins and fats to energy. Directions (Adults): Take 1-2 tablets daily with a meal. Store between 15°C and 25°C, away from children. Each caplet contains:Vitamin B1 (Thiamine Mononitrate) – 50mgVitamin B2 (Riboflavin) – 50mgVitamin B3 (Niacinamide) – 50mgVitamin B5 (Calcium d-pantothenate) – 50mgVitamin B6 (Pyridoxine HCl) – 50mcgVitamin B12 (Cyanocobalamin) – 50mcgBiotin – […]

NEW ROOTS CLOVES 500mg 100vcaps

$13.88

Used in traditional herbal medicine as a carminative for the relief of digestive complaints such as flatulence or abdominal distention.   Cloves are the rich, brown, dried, unopened flower buds of Syzygium aromaticum, an evergreen tree in the myrtle family. The name comes from the French “clou” meaning nail. They have been used in China for […]

Gaviscon Infant – 30 Sachets – 3 Pack

$51.25

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