If you have any issues or concerns with our products feel free to contact us at any time. We founded Elmas In Harlem to support those who want to live a natural healthy lifestyle and look forward to continue to do so.
$(document).ready(function() {
$('body').on('click', '[name="checkout"], [name="goto_pp"], [name="goto_gc"]', function() {
if ($('#agree').is(':checked')) {
$(this).submit();
}
else {
alert("You must agree with the terms and conditions of sales to check out.");
return false;
}
});
});