Click here to Skip to main content
15,884,083 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,

i have a strange problem on one of my HTML page.

HTML
<a href="mailto:info@abc.com">info@abc.com</a>


now on browser it shows [email protected] text instead of the actual email address. don't know why this behavior?

does any one knows the reason?


further information :

somehow this is thing is related to cloud flare plugin. don't know but on server client has made some change or register a site with cloud flare and that's why it shows this text instead of the actual email address.
Posted
Updated 17-Jul-14 0:28am
v2

1 solution

The issue is occurring due to cloud flare plugin. so you have to disable this plugin or change the text using simple javascript or jquery
HTML
<a href="mailto:info@abc.com" id="email">info@abc.com</a>

JavaScript
$("#emial").text("your text");
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900