Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] RE: Hiding URL.....


  • From: javascript@xxxxxxxxxx (Bob Filipiak)
  • Subject: [Javascript] RE: Hiding URL.....
  • Date: Fri, 22 Feb 2002 08:14:59 -0500

You didn't provide any code so try:
function ShowStatus(msg){
    window.status = msg;
    return true;
}



<A HREF="somepage.htm" onMouseOver="return ShowStatus('
')">Somewhere</A>

I think you probably are forgetting the return.

HTH