force - append button with link
(function ($, Drupal) {
$( document ).ready(function() {
$( ".tm-visitor-page article .headshot" ).remove();
$('.tm-visitor-page article .columns.content').addClass('large-12 medium-12 small-12');
$( ".tm-visitor-page .member-description" ).each(function() {
var link = $(this).find("a:first").attr('href');
console.log(link);
$(this).find(".member-biography").append( "<p><a class='button tiny' href='" + link + "'>Full Bio</a></p>" );
});
});
})(jQuery, Drupal);