
Originally Posted by
aussiebaz
If you want to have your email clickable but
impossible for email crawlers to be able to
find it (email crawlers are invisible software that searches
websites and extracts email addresses)
then use this code I have made for you:
<script language="javascript">
<!-- Hide from old browsers-->
function scramble(){
var p1,p2,p3,p4,p5,p6
p1='<a href="mai'
p2='ChefJoe'
p3='">'
p1+='lto:'
p2+='@'
p5='</a>'
p6='Contact Chef Joe'
p2+='LetsTalkChef.com'
p4=p6
document.write(p1+p2+p3+p4+p5)
}
scramble()
//-->
</script>
simply insert where you want your email address to be
on your page
aussiebaz