$6.21

Sudafed Decongestant Non Drowsy – 12 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 “Sudafed Decongestant Non Drowsy – 12 Tablets”

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

More Products

Reactine Complete Sinus + Allergy 30 Extended Release Tablets

$24.11

Fast relief of sinus + allergy symptomsSinus Congestion; Stuffiness; Nasal Congestion; Sneezing; Itchy, Watery Eyes; Runny Nose Dosage Directions: The tablets should be swallowed with liquid and should not be divided, chewed or crushed. May be taken with or without food. Do not exceed recommended dosage. Prolonged usage as directed by a doctor.Adults and Children […]

Buckley’s Chest Congestion 150mL

$14.58

Fast relief of: Cough, Congestion, Nasal & Sinus Congestion Indications: Fast-acting relief for up to 6 hours from cold and flu symptoms such as coughs, chest congestion, and nasal and sinus congestion. Directions: To be taken every 4-6 hours.. Adults & Children over 12 years old: 2 to 3 teaspoons (10 to 15mL). Do not exceed 6 doses daily. If […]

Abidec Multivitamin Drops – 25ml – 3 Pack

$29.33

What are Abidec Multivitamin Drops? Abidec Multivitamin Drops are a vitamin supplement that contains seven different vitamins to help your child gain all the vitamins they need in their diet to support their development. The drops are easy to administer and have been specially formulated to help to maintain healthy growth. This pack contains a […]

Nutricia Fortisip Compact Mocha 4 x 125ml

$13.78

What is Nutricia Fortsip Compact? Nutricia Fortsip Compact is a ready-mixed nutritional drink that is used for dietary management in those who are suffering from malnutrition due to illness. It provides an easy solution for those who are not receiving a sufficient amount of calories or nutrients from their diet. Each bottle contains 125ml of […]

CANPREV D3 & K2 120sg

$24.06

Liquid sunshine in a bottle, enhanced with vitamin K to help support bone health Tropical vacations are something we might manage once a year, but what about the other 50 weeks? Vitamin D helps with the absorption of calcium and phosphorus to keep your bones and teeth strong and protect against disease. Supplements are made […]

Peptac Peppermint Flavour Antacid – 500ml

$9.97

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