I\'d like to invoke a mailto link from JavaScript - that is I\'d like a method that allows me to open the email client on the users PC, exactly as if they had clicked on a n
You can use window.location.href here, like this:
window.location.href
window.location.href = "mailto:address@dmail.com";