$10.64

Gaviscon Advance Chewable Mint – 24 Tablets

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 “Gaviscon Advance Chewable Mint – 24 Tablets”

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

More Products

Nurofen Back Pain Relief – 24 x 300mg Capsules

$12.30

Contains 24 x 300mg Nurofen Back Pain capsules
Helps to ease backaches and pains
Read the patient information leaflet here

Nivea Q10 Power Anti-Wrinkle Night Cream 50ml

$23.73

Pharmacy Home Delivery Online Shopping Skin Care Medicine Health Beauty Women’s Health Contraception Virtual Care Headache Pain Back Pain Pain Relief First Aid Sanitizer Upset Stomach Diarrhea Vitamins Acid Reflux Heartburn Allergies Quit Smoking Cough Flu Sunscreen Diabetes Rash Laxative Probiotic

NATURAL FACTORS LIPOSOMAL VITAMIN C 1000mg 90sg

$16.40

Natural Factors Liposomal Vitamin C supports immune function and provides antioxidants that help protect against free radicals.  Supports immune function Provides a source of antioxidants to protect against free radicals Helps in collagen formation and wound healing Contributes to healthy bones, cartilage, teeth, and gums A high-absorption and high-potency formula Each softgel contains: Vitamin C500 mg  (ascorbic […]

Garnier Whole Blends Gentle Shampoo 370mL

$5.84

Oat Delicacy that moisturizes and softens with Oat Milk & Rice Cream Extracts Gentle for a sensitive scalp Our gentle cocooning formula blooms with a powdery-soft fragrance of oat milk & rice cream, bringing to life our wholesome, nourishing care for weightless hair  The Result: with every wash, reveal soft hair that’s weightlessly hydrated and […]

Piriton Allergy – 60 Tablets

$9.31

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