<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1013470" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1013470</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/csshover#comment-1078637</link>
    <description> &lt;p&gt;Once you start using layers you might as well just use images. At least that way it will work in all browsers that support JavaScript.&lt;/p&gt;
 </description>
     <pubDate>Mon, 26 Feb 2001 02:45:35 +0000</pubDate>
 <dc:creator>Adam Oberdorfer</dc:creator>
 <guid isPermaLink="false">comment 1078637 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/csshover#comment-1078633</link>
    <description> &lt;p&gt;ahhhh&lt;/p&gt;
 </description>
     <pubDate>Mon, 26 Feb 2001 00:48:35 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1078633 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/csshover#comment-1078632</link>
    <description> &lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;I never used Netscape, so I can&#039;t confirm whether or not this works:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;workarounddemo.htm &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Text Rollovers: An Example - Doc JavaScript&lt;/p&gt;
&lt;p&gt;&amp;lt;script LANGUAGE=&quot;JavaScript&quot;&amp;gt;&lt;br /&gt;
Dynamic HTML Lab, who came up with the idea for this script. Be sure to check out his &lt;A href=&quot;http://webreference.com/dhtml/&quot;&gt;interesting columns&lt;/a&gt;, and his &lt;A href=&quot;http://webreference.com/dhtml/links.html&quot;&gt;great list&lt;/a&gt; of JavaScript-related links.&lt;br /&gt;
// --&amp;gt;&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;script LANGUAGE=&quot;JavaScript&quot; SRC=&quot;workaround.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;
An Example&lt;br /&gt;
Try the following links (move the mouse over them) with Netscape Navigator 4.0x or Microsoft Internet Explorer 4.0:&lt;br /&gt;
&lt;A class=&quot;item&quot; href=&quot;http://www.netscape.com/&quot;&gt;Netscape&lt;/a&gt;&lt;br /&gt;
&lt;A class=&quot;item&quot; href=&quot;http://www.microsoft.com/&quot;&gt;Microsoft&lt;/a&gt;&lt;br /&gt;
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;workaround.css &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;.item { color: blue }&lt;br /&gt;
.highlight { color: red }&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;workaround.js &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;var bName = navigator.appName;&lt;br /&gt;
var bVer = parseInt(navigator.appVersion);&lt;br /&gt;
var NS4 = (bName == &quot;Netscape&quot; &amp;amp;&amp;amp; bVer &amp;gt;= 4);&lt;br /&gt;
var IE4 = (bName == &quot;Microsoft Internet Explorer&quot; &amp;amp;&amp;amp; bVer &amp;gt;= 4);&lt;/p&gt;
&lt;p&gt;function display(id, str) {&lt;br /&gt;
  if (NS4 || IE4) { // if browser supports style sheets&lt;br /&gt;
    if (NS4) { // if Navigator 4.0+&lt;br /&gt;
      with (document[id].document) {&lt;br /&gt;
        open(); // open document&lt;br /&gt;
        write(str); // write to document&lt;br /&gt;
        close(); // close document&lt;br /&gt;
      }&lt;br /&gt;
    } else { // Internet Explorer 4.0+&lt;br /&gt;
      document.all[id].innerHTML = str; // &quot;assign&quot; to element&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;function swapClass(text, spName, urlName, oldName, clName, over) {&lt;br /&gt;
  if (bVer &amp;lt; 4) { // old browser&lt;br /&gt;
    return; // terminate the function&lt;br /&gt;
  }  &lt;/p&gt;
&lt;p&gt;  // create a new string for the link&lt;br /&gt;
  // change the link&#039;s class to clName (it was oldName before)&lt;br /&gt;
  var str = &quot;&lt;A class=&#039;&amp;quot; + clName + &amp;quot;&#039; text spname urlname clname oldname&gt;&quot;;&lt;br /&gt;
  } else {&lt;br /&gt;
    // replace onMouseOut with onMouseOver&lt;br /&gt;
    // replace false with true&lt;br /&gt;
    str += &quot; onMouseOver=\&quot;swapClass(\&#039;&quot; + text + &quot;\&#039;, \&#039;&quot; + spName +&lt;br /&gt;
           &quot;\&#039;, \&#039;&quot; + urlName + &quot;\&#039;, \&#039;&quot; + clName +&lt;br /&gt;
           &quot;\&#039;, \&#039;&quot; + oldName + &quot;\&#039;, true)\&quot;&amp;gt;&quot;;&lt;br /&gt;
  }&lt;br /&gt;
  str += text + &quot;&lt;/a&gt;&quot;;&lt;br /&gt;
  display(spName, str); // update the code&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Hugh&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Feb 2001 23:51:50 +0000</pubDate>
 <dc:creator>Hugh Jass</dc:creator>
 <guid isPermaLink="false">comment 1078632 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/csshover#comment-1078628</link>
    <description> &lt;p&gt;Mark,&lt;/p&gt;
&lt;p&gt;No I didn&#039;t get your code to work.  I was talking about the solution that AndyB had mentioned at:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.insidedhtml.com/tips/styles/ts31/page1.asp&quot; class=&quot;bb-url&quot;&gt;http://www.insidedhtml.com/tips/styles/ts31/page1.asp&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It works, but is very involved.  I didn&#039;t think it was worth adding that complexity to my code.&lt;/p&gt;
&lt;p&gt;Bob&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Feb 2001 20:09:06 +0000</pubDate>
 <dc:creator>Bob</dc:creator>
 <guid isPermaLink="false">comment 1078628 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/csshover#comment-1078626</link>
    <description> &lt;p&gt;you got my JS code to work?&lt;br /&gt;
what was the problem?&lt;br /&gt;
(I only have NN6, nothing earlier, so I couldn&#039;t test it)&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Feb 2001 19:48:26 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1078626 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/csshover#comment-1078613</link>
    <description> &lt;p&gt;Andy,&lt;/p&gt;
&lt;p&gt;I guess you&#039;re right - we should have stopped with your original answer!  I also found that gruesome workaround for Netscape.  I actually got it to work, but decided to bag it since it was so rediculously complex in order to do the same thing that CSS/IE does so simply.  My Netscape users will have to be satisfied with a link that does not change color! Thanks again.&lt;/p&gt;
&lt;p&gt;Bob&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Feb 2001 12:45:47 +0000</pubDate>
 <dc:creator>Bob</dc:creator>
 <guid isPermaLink="false">comment 1078613 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/csshover#comment-1078612</link>
    <description> &lt;p&gt;According to &lt;a href=&quot;http://www.w3.org/TR/REC-CSS1#appendix-a&quot; class=&quot;bb-url&quot;&gt;http://www.w3.org/TR/REC-CSS1#appendix-a&lt;/a&gt; (and where else would you look), the order is LINK, VISITED, ACTIVE.  Hover isn&#039;t in that standard .. because it is not supported.&lt;/p&gt;
&lt;p&gt;um ... seems to me that that&#039;s exactly what I said in the &lt;strong&gt;very first&lt;/strong&gt; answer to this thread:)&lt;/p&gt;
&lt;p&gt;edits to add: take at look at &lt;a href=&quot;http://www.insidedhtml.com/tips/styles/ts31/page1.asp&quot; class=&quot;bb-url&quot;&gt;http://www.insidedhtml.com/tips/styles/ts31/page1.asp&lt;/a&gt; which discusses the Netscape issue and provides a gruesome work-around.&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Feb 2001 12:27:08 +0000</pubDate>
 <dc:creator>AndyB</dc:creator>
 <guid isPermaLink="false">comment 1078612 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Lets get this straight...</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/csshover#comment-1078611</link>
    <description> &lt;p&gt;Hi Suzanne,&lt;br /&gt;
The second part of your answer and possibly what Bob is most concerned about (regarding a:hover not working in Netscape) no doubt, is correct as it is well documented.&lt;/p&gt;
&lt;p&gt;However, can you please supply information as to the certainty of the css order  because I have found the one I posted above does work for me!&lt;br /&gt;
There is also a tutorial on this at &lt;a href=&quot;http://www.thepattysite.com/dreamweaver/linkstyles.html&quot; class=&quot;bb-url&quot;&gt;http://www.thepattysite.com/dreamweaver/linkstyles.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Link&lt;br /&gt;
Visited&lt;br /&gt;
Hover&lt;br /&gt;
Active&lt;br /&gt;
is the quoted and emphasised order here.&lt;/p&gt;
&lt;p&gt;If you got time might be worth finding out what &lt;a href=&quot;http://validator.w3.org/&quot; class=&quot;bb-url&quot;&gt;http://validator.w3.org/&lt;/a&gt;  have to say on the matter.&lt;/p&gt;
&lt;p&gt;Why are there  so many conflicting ideas/standards on the order??&lt;/p&gt;
&lt;p&gt;Maybe We can clear up the confusion once and for all :=)&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Feb 2001 12:15:35 +0000</pubDate>
 <dc:creator>Lanamedia</dc:creator>
 <guid isPermaLink="false">comment 1078611 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/csshover#comment-1078610</link>
    <description> &lt;p&gt;Suzzanne,&lt;/p&gt;
&lt;p&gt;Thanks!  You think some day all browsers will be fully compatitble?&lt;/p&gt;
&lt;p&gt;Bob&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Feb 2001 12:05:43 +0000</pubDate>
 <dc:creator>Bob</dc:creator>
 <guid isPermaLink="false">comment 1078610 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>omg, this many answers and not the right one...</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/csshover#comment-1078605</link>
    <description> &lt;p&gt;First, the rules in CSS are in order of use:&lt;/p&gt;
&lt;p&gt;a:link&lt;br /&gt;
a:active&lt;br /&gt;
a:visited&lt;br /&gt;
a:hover&lt;/p&gt;
&lt;p&gt;And it must be in that order to work properly.&lt;/p&gt;
&lt;p&gt;Seconding, a:hover doesn&#039;t work in Netscape 4.x -- it&#039;s not supported.  But it is in Netscape 6.0 + and Opera 5.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt; Suzanne&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Feb 2001 07:50:30 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1078605 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
