Answer the question
In order to leave comments, you need to log in
How to make mailto: links look like plain text?
I want mailto addresses to be treated as plain text.
Usually I use Win + Chrome, but I would not like to become attached, except perhaps to the OS.
How to make these links be inserted into various handlers, I can google, but how NOT to be processed?
Answer the question
In order to leave comments, you need to log in
Install extension
https://chrome.google.com/webstore/detail/no-mailt...
To stop the default behavior when a link is clicked, you need to catch the click event and call its method to cancel the default action:
function onClick(e) {
e.preventDefault();
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question