Added email replace
This commit is contained in:
parent
e1b4a161e6
commit
4651772fda
3
buy.html
3
buy.html
@ -13,6 +13,7 @@
|
||||
<!-- <link rel="icon" href="img/icon.ico"> -->
|
||||
|
||||
<!-- JavaScript Refs -->
|
||||
<script defer src="js/general.js"></script>
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: "Queensides";
|
||||
@ -52,7 +53,7 @@
|
||||
</div>
|
||||
<main>
|
||||
<div class="buy-info">
|
||||
<h2>Interested in buying a piece? Contact me at<br><a class="email-link" target="_blank" href="mailto:nancypannikkat@gmail.com?subject=Art Purchase Inquiry">nancypannikkat@gmail.com</a></h2><br><br>
|
||||
<h2>Interested in buying a piece? Contact me at<br><a class="email-link" target="_blank" href="mailto:nancypannikkat-at-gmail-dot-com">nancypannikkat (at) gmail (dot) com</a></h2><br><br>
|
||||
<h2>Or call me at<br><span class="emphasis-text">650-793-3954</span></h2>
|
||||
</div>
|
||||
</main>
|
||||
|
@ -25,4 +25,17 @@ document.addEventListener( 'DOMContentLoaded', function() {
|
||||
function uncheck(id) {
|
||||
document.getElementById(id).checked = false;
|
||||
}
|
||||
|
||||
//Email Replace
|
||||
function setAttributes(elem, attrs) {
|
||||
for(var key in attrs) {
|
||||
elem.setAttribute(key, attrs[key]);
|
||||
}
|
||||
}
|
||||
|
||||
const tech_emails = document.querySelectorAll('.email-replace');
|
||||
tech_emails.forEach(entry => {
|
||||
setAttributes(entry, {"href": "mailto:nancypannikkat" + "@" + "gmail.com?subject=Art Purchase Inquiry", "target": "_blank"});
|
||||
entry.innerHTML = "nancypannikkat" + "@" + "gmail.com";
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue
Block a user