Wrox Home  
Search P2P Archive for: Go

  Return to Index  

html_code_clinic thread: status bar


Message #1 by "Tim Zhang" <tzhang@h...> on Tue, 13 Nov 2001 22:19:22
--part1_153.3f55825.2922f919_boundary
Content-Type: text/plain; charset="US-ASCII"
Content-Transfer-Encoding: 7bit

Sure. Its a simple javascript feature
As i am lazy i took it from a javascript website
Put the following after the body tag.
<!--// please keep these lines on when you copy the source// made by: Nicolas 
- http://www.javascript-page.com --!>
<script language="JavaScript">

function text(txt) {window.status = txt;}// -->

</script>

<a href="" onmouseover='text(" "); return true'>Put your mouse over here</a>


Where the mouseover is the empty " " means it'll show a blank on the status 
bar. You can add words inside ot make it say something as well. Do the 
onmouse over='text(" "); return true' for each link you dont want to show the 
status bar on :-)


  Return to Index