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 “Airomir Inhaler 100mcg – 200 Doses”

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

More Products

PGX DAILY SINGLES 75g packet

$18.59

PGX DAILY SINGLES – 75 g packet Description Convenient packet containing daily PGX® (PolyGlycopleX), a patented complex designed to support healthy blood sugar levels and satiety. Ideal for mixing into water, smoothies, or meals—supporting post-meal glucose control. Single-use packets make it easy to take with you and stay consistent with metabolic support. Advice to use Adults: […]

Robitussin Mucus & Phlegm Extra Strength Syrup 100mL

$10.22

Relieves Chest CongestionLoosens Mucus and PhlegmSoothes Throat Dosage: Adults (12 years & over): 2 teaspoons (10mL). Children under 12 years: Do not use. Take every 6 hours or as directed by a doctor. Maximum 4 doses/day. Caution: Keep out of reach of children. This package contains enough medication to seriously harm a child. Do not […]

PASCOE PASCALLERG 100tabs

$27.03

Homeopathic remedy to relieve symptoms of hay fever and other allergies such as sneezing, wheezing, dyspnea and itching of the skin and eye.Allergies? Use the power of nature to feel better quickly! What is Pascallerg®?Pascallerg® is a non-drowsy homeopathic remedy to relieve symptoms of hay fever, and other allergies including spring allergies. Made with a […]

Lax-A-Day Laxative

$7.65

Lax-A-Day is a tasteless, grit-free, sugar-free powder to be mixed into a beverage. It works by gently drawing water into the stools, making them softer and increasing the frequency of bowel movements without any sense of urgency. Lax-A-Day is the #1 doctor recommended brand in its class and is clinically proven to relieve occasional constipation. […]

Beconase Hayfever Relief Nasal Spray – 180 Sprays

$13.78

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