Your World of Wellness
Ascend4Life offers you the nutritional solutions you need to enjoy the optimum health you seek. Select any product to make your purchase or learn more.
Full Spectrum, Organic, Domestic CBD Hemp Oil - 25 ... more
Full Spectrum, Organic, Domestic CBD Hemp Oil - 50 ... more
Full Spectrum, Organic, Domestic CBD Hemp Oil - 10 ... more
Full Spectrum 1000mg CBD Pain Cream, 1 FL OZ
360 Package contains 4 Moringa Organic Green Tea [ ... more
TruHemp CBD Gummies
Full Spectrum, Organic, Domest ... more
TruHemp Full Spectrum Salve, with 1000mg of active ... more
Moringa Herbal Leaf Extract - 1 Ounce - 2 Pack
The Moringa Package contains 1 Moringa Organic Gre ... more
TruHemp Full Spectrum CBD Oil Softgels - 30 Count
90 Package contains 2 Moringa Organic Green Tea [2 ... more
180 Package contains 3 Moringa Organic Green Tea [ ... more
Blue Tomato Extract - 1 ounce - 2 pack
TruHemp CBD Oil 1 oz, 250mg
Moringa Leaf Powder Caps - 2 Pack
Moringa Loose Leaf Powder
Moringa Tea - 3 Pack (25 bags per box)
TruHemp Hand Sanitizer, 2 Oz - 3 Pack. Containing ... more
View Details
Quick Look Read More
Total Allowed Quantity: ${GenericFlavorSKUQty}
{{tmpl($data) "#ListViewFlavors"}}
Enter Quantity
{{each Flavors}}
${FlavorSKUName}
{{/each}}
');
} else {
if (jQuery(this).attr('hascustomattribute').toLowerCase() == "true") {
jQuery(this).parents('.product-image').children('div').append('
');
} else {
jQuery(this).parents('.product-image').children('div').append('
');
}
}
});
jQuery('.navProductWrapper .product-image > div > a').on('click', function (e) {
e.preventDefault();
OpenProductDetailPopup(jQuery(this).children('img').attr("productid"));
});
jQuery('.product-button-wrapper .pushbutton').removeAttr('onmouseover').removeAttr('onmouseout');
jQuery('.shop-item-wrapper a[id$="hyName"],.product-button-wrapper .pushbutton').on('mouseover', function () {
var baseId = jQuery(this).attr('id').replace('_hyName', '').replace('_hyClickToview', '');
jQuery('#' + baseId + '_hyImage').parents('.product-image').addClass('hover-active');
}).on('mouseout', function () {
var baseId = jQuery(this).attr('id').replace('_hyName', '').replace('_hyClickToview', '');
jQuery('#' + baseId + '_hyImage').parents('.product-image').removeClass('hover-active');
});
}
}
/*Added by Jam on 12032019 for adding a script to adjust the height of the product info*/
function adjustProductInfoHeight() {
var productInfoHeight = 0;
setTimeout(function () {
jQuery('#product-catalogue-horizontal-wrapper .navProductWrapper .product-info').each(function () {
var thisProductHeight = jQuery(this).outerHeight() + 10;
if (thisProductHeight > productInfoHeight) {
productInfoHeight = thisProductHeight;
}
});
productInfoHeight += 5;
jQuery('head').append('');
}, 500);
}
/*End added by Jam on 12032019*/
jQuery(document).ready(function () {
if (loadColorThief.called != true) {
loadColorThief();
}
addDataContent();
/*BindEvents(); Removed by Jam*/
quickLookPopUpInit();
});
jQuery(window).on('load', function () {
try {
var color = sessionStorage.getItem('colorThiefRgb');
jQuery('head').append('');
} catch (colorThiefError) { }
adjustProductInfoHeight();
});
function Show(Item, strName, event) {
try {
var divName = document.getElementById("productName");
if (divName) {
if (typeof (Item) == 'object') {
var txtDivName = Item.Text.replace("... ", "");
divName.innerHTML = txtDivName;
}
else
divName.innerHTML = Item;
}
var divDesc = document.getElementById("productcategorydesc");
divDesc.style.whiteSpace = "normal";
divDesc.style.display = "inline";
jQuery(divDesc).css("display", "inline");
if (divDesc) {
if (typeof (Item) == 'object') {
divDesc.innerHTML = Item.Attributes["Description"];
}
else
divDesc.innerHTML = strName;
}
if (window.event) {
/* get the mouse left position */
//Added by Jonnique Wafu 3/20/2013
//x = event.clientX + document.body.scrollLeft + event.srcElement.offsetWidth - 335;
/*x = event.clientX + (document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft);*/
x = event.srcElement.offsetParent.offsetLeft + event.srcElement.offsetLeft;
/*Updated by Jam on 04042017*/
//End Added by Jonnique Wafu 3/20/2013
//x=event.screenX-event.offsetX;
/* get the mouse top position */
//Added by Jonnique Wafu 3/20/2013
//y = event.clientY + document.body.scrollTop - 75; //42
/*y = event.clientY + (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop);*/
y = event.srcElement.offsetParent.offsetTop + event.srcElement.offsetTop;
/*Updated by Jam on 04042017*/
//End Added by Jonnique Wafu 3/20/2013
}
else {
/* get the mouse left position */
//Added by Jonnique Wafu 3/20/2013
//x = event.clientX + document.body.scrollLeft + event.target.offsetWidth - 335;
/*x = event.clientX + (document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft);*/
x = event.srcElement.offsetParent.offsetLeft + event.srcElement.offsetLeft;
/*Updated by Jam on 04042017*/
//End Added by Jonnique Wafu 3/20/2013
//x=event.screenX-event.offsetX;
/* get the mouse top position */
//Added by Jonnique Wafu 3/20/2013
//y = event.clientY + document.body.scrollTop - 75; //42
/*y = event.clientY + (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop);*/
y = event.srcElement.offsetParent.offsetTop + event.srcElement.offsetTop;
/*Updated by Jam on 04042017*/
//End Added by Jonnique Wafu 3/20/2013
}
/* display the pop-up */
//popProductDescription.style.display = "block";
//Added by Jonnique Wafu 6/8/2012
jQuery("#popProductDescription").css("display", "block");
//End Added by Jonnique Wafu 6/8/2012
/* set the pop-up's left */
//popProductDescription.style.left = x - 50; //90
//Added by Jonnique Wafu 6/8/2012
jQuery("#popProductDescription").css("left", x - 290);
//End Added by Jonnique Wafu 6/8/2012
/* set the pop-up's top */
//popProductDescription.style.top = y + 40; //50
//Added by Jonnique Wafu 6/8/2012
jQuery("#popProductDescription").css("top", y - 24);
//End Added by Jonnique Wafu 6/8/2012
}
catch (exception) { }
}
/* this function hides the pop-up when
user moves the mouse out of the link */
function Hide() {
try {
/* hide the pop-up */
var divName = document.getElementById("productName");
if (divName) {
divName.innerHTML = "";
}
document.getElementById("productcategorydesc").innerHTML = "";
// popProductDescription.style.display = "none";
//Added by Jonnique Wafu 6/8/2012
jQuery("#popProductDescription").css("display", "none");
//End Added by Jonnique Wafu 6/8/2012
}
catch (excption) { }
}
/*Added by Jam for New Mobile Layout*/
function adjustHeightOnMobile() {
var titleHeight = 0,
descriptionHeight = 0;
jQuery('.navProductWrapper .product-info .product-title').each(function () {
if (jQuery(this).height() > titleHeight) {
titleHeight = jQuery(this).height();
}
});
jQuery('.navProductWrapper .product-info .product-description').each(function () {
if (jQuery(this).height() > descriptionHeight) {
descriptionHeight = jQuery(this).height();
}
});
titleHeight += 5;
descriptionHeight += 5;
jQuery('head').append('');
}
function newShopLayout() {
jQuery('[id$="productList"] > tbody').prepend('
');
jQuery('[id$="productList"] > tbody > tr > td').each(function () {
jQuery(this).detach().appendTo('.new-shop-item-wrapper');
});
ProductFilterLoad();
}
function updatePaginationText() {
jQuery('[id$="divtotalRecords"] > div .linkbutton,[id$="divToptotalRecords"] > div .linkbutton').each(function () {
var text = jQuery(this).text();
if (text.indexOf('[') != -1) {
text = text.replace('[', '').replace(']', '')
jQuery(this).addClass('selected');
jQuery(this).text(text);
}
});
}
function checkProductButtons() {
jQuery('.navProductWrapper .product-button-wrapper > div').each(function () {
if (jQuery(this).find('.pushbutton').length div').on('hover', function(){
var itemWidth = jQuery(this).children('span').width() + 31;
jQuery(this).children('.shop-sub-category').css('left', itemWidth+'px');
});*/
newShopLayout();
jQuery('#product-catalogue-horizontal-wrapper').show();
ProductFilterLoad();
});
jQuery(window).on('load', function () {
adjustHeightOnMobile();
});
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endRequestFunction);
/*End Added by Jam*/
{{if IsAutoshipItem == false}}
${RetailPriceFormatted}
{{else}}
${AutoshipPriceFormatted}
{{/if}}
${SelectedAutoshipItemText}