A simple jquery plugin that displays e-mail addresses that are obfuscated in the source code.
jquery 2.0.1
Install the plugin, and use the following source code as an example. Basic use (using the default syntax), more examples can be found in the demo folder.
<span class="email1">anEmailAddress[at]domain.com</span>
<span class="email1">anotherEmailAddress[at]domain[dot]com</span>
<span class="email1">yetAnother<del>-REMOVE-THIS-</del>EmailAddress[at]domain[dot]com</span>
<script src="http://code.jquery.com/jquery-2.0.1.min.js"></script>
<script src="src/jquery.mailIt.min.js"></script>
<script>
$(function () {
$('.email1').mailIt();
});
</script>
View the examples in the demo folder.
- Gareth Cadwaladr - Initial work - gar-cad
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details