<script>
/*
function linkify(text) {
var exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
return text.replace(exp, "<a href='$1' target='_blank'>$1</a>");
}
var message = $('t-product__option-title_buttons').text();
$display = linkify(message);
*/
$class = '.t-product__option-title_buttons';
$($class).each(function(i) {
var link = this.innerText;
console.log(link);
});
</script>