>Date: Tue, 11 Jul 2000 10:52:09 -0700
>From: "Richard Colman" <[EMAIL PROTECTED]>
>To: "Cf-Talk" <[EMAIL PROTECTED]>
>Subject: Seeking Text Rollover
>Message-ID: <[EMAIL PROTECTED]>
>
>(A little off topic, but, this may be a common need and worth repeating.)
>
>Seeking JavaScript, DHTML, CF, etc. script/solution that will provide a
>simple "change-in-color" text rollover (without the need for images) in both
>IE AND NETSCAPE browsers.
>
>Have been looking in the obvious places, but have not found anything. Does
>anyone know of a source?
>
>Richard Colman

Richard,
You may want to try something like this.  It is a javascript we implemented on our 
site:

<html>
<head>
        <title>Whatever you want here</title>
     
<STYLE> 
    .Fancy  {color : Cyan;link : Cyan;}
    .start  {color : silver;link : silver; visited : silver;}
</STYLE>

<SCRIPT LANGUAGE=JAVASCRIPT>
  function highlightButton(s) {
    if ("INPUT"==event.srcElement.tagName)
      event.srcElement.className=s
  }
</SCRIPT>
</head>
<HTML>
<tr>
    <td><strong><font size="+1" color="#00ff00">Category 1<font></strong></td>
    <td><strong><font size="+1" color="#00ff00">Category 2<font></strong></td>
</tr>
<tr>
    <td><strong><A onmouseover = "this.className = 'Fancy'" onmouseout = 
"this.className='start'" class=start HREF="Category1.cfm">Category 1 
Data</strong></A></td>
    <td><strong><A onmouseover = "this.className = 'Fancy'" onmouseout = 
"this.className='start'" class=start HREF="Category2.cfm">Category 2 
Data</strong></A></td>
</tr>
<HTML>

Hope this works for you!

Chris Ivey

MTS Systems Engineer
GTE Data Services: Temple Terrace, Florida
TSS Distributed - WAN Tools Group
Office: (813) 978-4844
Pager: (813) 303-1177
AIM: IveyAtGTEDS

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to