Skip to content

Instantly share code, notes, and snippets.

@stoffl6781
Created November 18, 2021 16:32
Show Gist options
  • Save stoffl6781/1fc012102b4d432e9f87a33c32986751 to your computer and use it in GitHub Desktop.
Save stoffl6781/1fc012102b4d432e9f87a33c32986751 to your computer and use it in GitHub Desktop.
Get content from an ID and replace as link on another Button
var email = document.getElementById('text_email').innerText;
(function($) {
$(document).ready(function(){
var button_email = document.getElementById('email_button');
button_email.href = "mailto:"+email+" ";
});
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment