Hi,
I want to protect my website against spambots with javascript.
I found this code, I have two questions.
1 - Will this code protect my email adres? 2 - Can someone explain me how to add this line:
<SCRIPT TYPE="text/javascript">
emailE=('info@' + 'friesecomputerservice.nl')
document.write('<A href="mailto:' + emailE + '">' + emailE + '</a>')
//-->
</script>
This is the line to add:
<span title="Stuur ons een e-mail"
This is what I have, I can't test it at the moment, can you verify it's correct?
<script type="text/javascript">
emailE=('info@' + 'friesecomputerservice.nl')
document.write('<a href="mailto:' + emailE + '">' + '<span title="Stuur ons een e-mail">'+ emailE +'</span>' + '</a>')
//-->
</script>