ivanhoe
07-18-2002, 01:39 AM
I have this script not until recent I got some viewer telling me
when click they get an "error "message" and the link seems to have some difficulty or unsuccessful links.
Either this doesn't work with IE, E4+ or N6 that I have no way checking. Or maybe someone can give a better script that will work to whether visitors are using IE or whatever!
Anyway here is a script that I use;
<HTML>
<STYLE>
SPAN {cursor: hand ; }
.onme1 {color: GOLD ; }
.offme{color: #CEFFCEb ; }
</STYLE>
<script language="JavaScript">
function getonme() {
el = event.srcElement ;
if (el.getAttribute("litUp1") != null) {
el.className = "onme1" ;
}
}
function getoffme() {
el = event.srcElement ;
if (el.getAttribute("litUp1") != null) {
el.className = "offme";
}
}
document.onmouseover = getonme ;
document.onmouseout = getoffme ;
</script>
<b><center><font face="arial,helvetica" color="#CEFFCEb" size="3"><span onclick="location.href='http://www.mydomain.com/main.html'" bgcolor="black" TITLE="CLICK to enter our Main Store" litUp1>Click here to enter<br>→ Main Store ←</span></b>
</font></p>
when click they get an "error "message" and the link seems to have some difficulty or unsuccessful links.
Either this doesn't work with IE, E4+ or N6 that I have no way checking. Or maybe someone can give a better script that will work to whether visitors are using IE or whatever!
Anyway here is a script that I use;
<HTML>
<STYLE>
SPAN {cursor: hand ; }
.onme1 {color: GOLD ; }
.offme{color: #CEFFCEb ; }
</STYLE>
<script language="JavaScript">
function getonme() {
el = event.srcElement ;
if (el.getAttribute("litUp1") != null) {
el.className = "onme1" ;
}
}
function getoffme() {
el = event.srcElement ;
if (el.getAttribute("litUp1") != null) {
el.className = "offme";
}
}
document.onmouseover = getonme ;
document.onmouseout = getoffme ;
</script>
<b><center><font face="arial,helvetica" color="#CEFFCEb" size="3"><span onclick="location.href='http://www.mydomain.com/main.html'" bgcolor="black" TITLE="CLICK to enter our Main Store" litUp1>Click here to enter<br>→ Main Store ←</span></b>
</font></p>