JSFiddle - React, Tailwind, and code Playground

HTML

<a class="button cartloom-addtocart" href="#" id="product_buy" style="margin-bottom:8px">Purchase</a>

JavaScript

$('body').ready(function(){

	var product_name = $('#product_name').html();

	$.get('http://cdn.jeremyblaze.com/theme_info.html', function(data) {
	    $('#product_buy').attr('href', $(data).find('#Altitude .product_buy_source').text());
	});

	$('#product_description').load('http://cdn.jeremyblaze.com/theme_info.html #' + product_name + ' .product_description_source');
	$('#product_specs').load('http://cdn.jeremyblaze.com/theme_info.html #' + product_name + ' .product_specs_source');

});