bart21
09-06-2001, 01:00 PM
Hello everyone
I use a javascript source-file and I link like this in my html-document:
<SCRIPT LANGUAGE='JavaScript' SRC='..\files\flemail.js'></SCRIPT>
The contents of the file:
<!--
//a1javascripts.com
var naam = "info"
var domein = "flandersonline.net"
var klasse = "Mail"
function status_in()
{
document.status='Mail us';
return true;
}
function status_out()
{
document.status='out';
return true;
}
document.write("©<A CLASS=" + klasse + " HREF='MAILTO:" + naam + "@" + domein + "'")
document.write(" OnMouseOver=status_in() OnMouseOut=status_out()>")
document.write("FlandersOnline Team")
document.write("</A>")
//-->
But when I try this script, and I put my mouse on the link, it returns to me:"mailto:info@flandersonline.net" and not "mail us" in the statusbar. But when I go out the link, I see "out"... I really don't understand. Can please someone help me?
I use a javascript source-file and I link like this in my html-document:
<SCRIPT LANGUAGE='JavaScript' SRC='..\files\flemail.js'></SCRIPT>
The contents of the file:
<!--
//a1javascripts.com
var naam = "info"
var domein = "flandersonline.net"
var klasse = "Mail"
function status_in()
{
document.status='Mail us';
return true;
}
function status_out()
{
document.status='out';
return true;
}
document.write("©<A CLASS=" + klasse + " HREF='MAILTO:" + naam + "@" + domein + "'")
document.write(" OnMouseOver=status_in() OnMouseOut=status_out()>")
document.write("FlandersOnline Team")
document.write("</A>")
//-->
But when I try this script, and I put my mouse on the link, it returns to me:"mailto:info@flandersonline.net" and not "mail us" in the statusbar. But when I go out the link, I see "out"... I really don't understand. Can please someone help me?