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 “Liberize Tablets 50mg – 8 Pack”

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

More Products

Robaxacet Regular Strength

$14.97

For effective relief of pain associated with muscle spasm such as back pain, tense neck muscles, strains and sprains. Adult Dosage (12 years and older): 2 caplets, every 6 hours, not to exceed 8 tablets daily. Caution: Keep out of reach of children. This package contains enough drug to seriously harm a child. Do not […]

GUM Dome Trim Soft Toothbrush

$1.45

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

Mefenamic Acid Tablets

$53.51

Mefenamic acid can relieve period pain as well as headaches, toothache and muscular pain.
Can also reduce excessive menstrual bleeding. 
Non-steroidal anti-inflammatory drug (NSAID).
Always read the patient information leaflet before use. 

Live Clean Baby Lotion 227ml

$8.03

Certified organic botanicals of Chamomile and Lavender with natural emollients and aloe to gently moisturize delicate skin. This non-greasy, moisturizing lotion formula absorbs quickly, leaving skin soft and smooth with a gentle scent to soothe baby. 97% Planet Derived With certified Organic Botanicals Petrolatum Free Paraben Free Phthalate Free Dry Free Pure Vegan Never Tested […]

Paracetamol Soluble Tablets – 100 x 500mg

$30.77

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