Domanda:

Vorrei sapere se questo javascript, utile per proteggere la propria email dallo spam della rete internet, ha dei limiti con browser non "aggiornati" (le prove che ho fatto in vari "Internet Point" non possono dare informazioni al riguardo essendo i Pc presenti in questi locali, ovviamente, tutti dotati di sistemi operativi aggiornati.


in <head>:





<SCRIPT NAME=JAVASCRIPT>

function Transpose(String){
var email ='provider.it@nome'
var TempBefore = '';
var TempAfter = '';
var NewString = '';
var Start = 0;
var WhereHash = email.indexOf ('@');
for (Count = 1; Count <= WhereHash; Count ++){
TempBefore += email.substring (Start, Count);
Start++
}
Start = WhereHash;
Start ++
WhereHash +=2;
for (Count = WhereHash; Count <=email.length; Count++){
TempAfter +=email.substring (Start, Count)
Start++
}
NewString = TempAfter +'@' + TempBefore;
parent.location = 'mailto:'+NewString;
}
</SCRIPT>




in <body> mettere il richiamo:

Contattaci.



Grazie 1000