Gossamer Forum
Home : General : Internet Technologies :

Re: [dan] JavaScript Issue

Quote Reply
Re: [dan] JavaScript Issue In reply to
I'd use plain css with a tad of JS.

Code:

<style type="text/css">
TD.over {
cursor: pointer;
font-weight: 600;
color: #FFFFFF;
background-color: #0E72A4;
}

TD.out {
background-color: #C8D1D7;
color: #006699;
font-weight: 600;
}
</style>

Then use:

<td onmouseover="this.className='over'; windows.status='Home';" onmouseout="this.className='out'; window.status='';" class="out" onclick="location.href='/';">Home</td>
Subject Author Views Date
Thread JavaScript Issue dan 4272 May 29, 2003, 11:01 AM
Thread Re: [dan] JavaScript Issue
Paul 4020 May 29, 2003, 12:41 PM
Post Re: [Paul] JavaScript Issue
dan 4009 May 29, 2003, 2:09 PM