Sickle Cell Test
$ 39.99
Sickle Cell Anemia Test
This test is used to detect a defective form of hemoglobin called hemoglobin Hb. It is responsible for sickle cell anemia.
⏱ Typical turnaround: results are usually emailed in 1–3 days.
Individuals with one sickle cell gene have a relatively small percentage of hemoglobin Hb. Individuals with two sickle cell genes have sickle cell anemia identified by a much larger concentration of defective hemoglobin. This test will determine the hemoglobin Hb levels in your body.
if (!stickyBar || !stickyButton) return;
function getProductTitle() {
var selectors = [
'.product-single__title',
'.product__title',
'.product-title',
'.product-single h1',
'h1'
];
for (var i = 0; i < selectors.length; i++) {
var el = document.querySelector(selectors[i]);
if (el && el.textContent.trim()) {
return el.textContent.trim();
}
}
return document.title.replace('– LabReqs.com', '').replace('- LabReqs.com', '').trim();
}
function getProductPrice() {
var selectors = [
'.product-single__price',
'.product__price',
'[data-product-price]',
'.price',
'.money'
];
for (var i = 0; i < selectors.length; i++) {
var el = document.querySelector(selectors[i]);
if (el && el.textContent.trim().match(/\$/)) {
return el.textContent.trim();
}
}
return '';
}
function findMainAddToCartButton() {
return document.querySelector(
'form[action*="/cart/add"] button[type="submit"], ' +
'form[action*="/cart/add"] input[type="submit"], ' +
'button[name="add"], ' +
'input[name="add"], ' +
'.product-form__submit, ' +
'.add-to-cart, ' +
'#AddToCart'
);
}
function updateStickyVisibility() {
if (window.innerWidth > 767) {
stickyBar.classList.remove('is-visible');
return;
}
var mainButton = findMainAddToCartButton();
if (!mainButton) {
stickyBar.classList.add('is-visible');
return;
}
var rect = mainButton.getBoundingClientRect();
var mainButtonVisible = rect.top < window.innerHeight && rect.bottom > 0;
if (!mainButtonVisible) {
stickyBar.classList.add('is-visible');
} else {
stickyBar.classList.remove('is-visible');
}
}
stickyTitle.textContent = getProductTitle();
stickyPrice.textContent = getProductPrice();
stickyButton.addEventListener('click', function () {
var mainButton = findMainAddToCartButton();
if (mainButton) {
mainButton.click();
}
});
window.addEventListener('scroll', updateStickyVisibility, { passive: true });
window.addEventListener('resize', updateStickyVisibility);
updateStickyVisibility();
setTimeout(updateStickyVisibility, 500);
setTimeout(updateStickyVisibility, 1500);
}