What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » javascipt / html - help

javascipt / html - help
Author: Message:
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: javascipt / html - help
Try
code:
<a href="javascript:launchMail()">E-mail Me</a>
with
code:
<script type="text/javascript">
<!--
function launchMail()
{
    var email = "<user-name>";
    email = email + "@";
    email = email + "<domain-name>";
    window.location = "mailto:" + email;
}
// -->
</script>
Put the <script> part between the <head> tags, and the <a> anywhere where you want your e-mail link.

This code works: it's lifted from my own webpage.

This post was edited on 06-27-2004 at 08:09 PM by RaceProUK.
[Image: spartaafk.png]
06-27-2004 08:08 PM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
javascipt / html - help - by Web_Master on 06-27-2004 at 07:15 AM
RE: javascipt / html - help - by WDZ on 06-27-2004 at 07:59 AM
RE: javascipt / html - help - by Web_Master on 06-27-2004 at 10:02 AM
RE: javascipt / html - help - by Mnjul on 06-27-2004 at 10:06 AM
RE: javascipt / html - help - by CookieRevised on 06-27-2004 at 11:54 AM
RE: RE: javascipt / html - help - by Web_Master on 06-28-2004 at 05:57 AM
RE: javascipt / html - help - by RaceProUK on 06-27-2004 at 08:08 PM
RE: javascipt / html - help - by saralk on 06-27-2004 at 09:11 PM
RE: javascipt / html - help - by RaceProUK on 06-27-2004 at 09:15 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On