Das JavaScript erzeugt einen eMail Button, mit dem sich der Link der Seite kompfortabel versenden läßt.
Autor: Happy Smart
Demo
in <body> einfühen
<div align="center">
<!-- by: Happy Smart -->
<!-- Web Site: happysmart.net -->
<script type="text/javascript">
function EmailLink(){
window.location = "mailto:"+"?subject=I thought this link might interest you." + "&body="+document.title+" "+window.location;
}
document.write('<INPUT class="select" TYPE="button" VALUE="E-mail this link to a friend" onClick="EmailLink()"></FORM>')
</script>
</div>
|