Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Default welcome message 1

Status
Not open for further replies.

tnbrwneyez

Programmer
Oct 2, 2004
19
US
I need to modify the follwing script to display a default welcome message in the status line where ever a description isn't being displayed.

<script language="JavaScript" type="text/javascript">
function describe (text) {
window.status=text;
return true;
}
function clearstatus(){
window.status="";
}
</script>

Thanks!
 
does this work???

<script language="JavaScript" type="text/javascript">

window.status="Default text here....";

function describe (text) {
window.status=text;
return true;
}
function clearstatus(){
window.status="";
}
</script>


Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top