email mit jscript auf website schreiben, bringts was?
das liest man immer wieder mal:
<script type="text/javascript">
<!--
function writeMailto() {
var first = 'ma';
var second = 'il';
var third = 'to:';
var address = 'b...l';
var domain = '';
var output = '';
output = output + '<a href="';
output = output + first+second+third;
output = output + address;
output = output + '@';
output = output + domain;
output = output + '" title="contact us">';
output = output + 'contact me for more info<\/a>';
return output;
}
// -->
</script>
<script type="text/javascript">document.write(writeMailto());</script>
inhalt von adress als unicodes geschrieben.
bringts das wirklich, ich mein es wird doch sicher schon bots geben, die einen renderer vorschalten? warum net einfach wie bisher <a href und alles in unicode schreiben, warum jscript?
|