- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
(function($){
var container = document.getElementById('products');
var original_products = document.querySelector('.products-wrapper');
var spo_products = document.createElement('div');
var spo_script = document.createElement('script');
spo_script.src = 'http://www.rosettastone.com/lp/spo/sept2016/ingles/js/spo_logic.js';
$.ajax({
url: 'http://www.rosettastone.com/lp/spo/sept2016/ingles/curso_products.html',
success: function(result){
spo_products.innerHTML = result;
container.insertBefore(spo_products, original_products);
document.body.appendChild(spo_script);
original_products.style.display = 'none';
}
});
})(jQuery);