$.ajax({
url: 'https://getbootstrap.com',
type: "GET",
crossDomain: true,
dataType: 'html',
success: function (responseHTMLData) {
$($(responseHTMLData).find('.bd-text-purple-bright')).each(function() {
console.log($(this).attr('href'));
});
}
});