midez
07-06-2005, 05:30 PM
When i click an a e-mail link i want it to add som information to the subject and to the body, something like this (i know it's not right):
?subject=Take a look at this page I found, ' + document.title + '?body=You can see this
I want it to be implimented in to this script:
<SCRIPT LANGUAGE="JavaScript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
var user = "username";
var site = "yoursite.com";
document.write('<a href=\"mailto:' + user + '@' + site + '\">');
document.write(user + '@' + site + '</a>');
// End -->
</SCRIPT>
Mike //
?subject=Take a look at this page I found, ' + document.title + '?body=You can see this
I want it to be implimented in to this script:
<SCRIPT LANGUAGE="JavaScript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
var user = "username";
var site = "yoursite.com";
document.write('<a href=\"mailto:' + user + '@' + site + '\">');
document.write(user + '@' + site + '</a>');
// End -->
</SCRIPT>
Mike //