<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1020129" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1020129</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/hover-effect-image-read-understand#comment-1123510</link>
    <description> &lt;p&gt;You could tweak it for NS4.7 using &#039;layers&#039; instead of &#039;all&#039; and by dropping off the &#039;style&#039; on the end.  Also you would have to use &#039;show&#039; and &#039;hide&#039; instead of &#039;visible&#039; and &#039;hidden&#039;. &lt;/p&gt;
&lt;p&gt;I have written a tutorial on this issue. It is cross-browser also:&lt;br /&gt;
&lt;a href=&quot;http://66.246.52.6/laboratory/javascript/hideshow/&quot; class=&quot;bb-url&quot;&gt;http://66.246.52.6/laboratory/javascript/hideshow/&lt;/a&gt;&lt;br /&gt;
(sorry for the ip but my dns&#039;s are completely totalled)&lt;/p&gt;
&lt;p&gt;-dk&lt;/p&gt;
 </description>
     <pubDate>Wed, 15 Jan 2003 07:29:42 +0000</pubDate>
 <dc:creator>dk01</dc:creator>
 <guid isPermaLink="false">comment 1123510 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/hover-effect-image-read-understand#comment-1123495</link>
    <description> &lt;p&gt;fyi, it&#039;s DOM support that&#039;s lacking -- Netscape invented JavaScript.&lt;/p&gt;
 </description>
     <pubDate>Wed, 15 Jan 2003 02:44:15 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1123495 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/hover-effect-image-read-understand#comment-1123487</link>
    <description> &lt;p&gt;This is a nice script necrotic but unfortunately it does not work in Netscape 4.7 -- the image shows when the page loads, so there is no mouseover effect (it does work fine in NN 7.0 however). &lt;/p&gt;
&lt;p&gt;Is there any way to tweak it so it will work in 4.7, or is that impossible due to the nature of 4.7&#039;s js support (or lack thereof)?&lt;/p&gt;
 </description>
     <pubDate>Wed, 15 Jan 2003 00:22:44 +0000</pubDate>
 <dc:creator>SW Reynolds</dc:creator>
 <guid isPermaLink="false">comment 1123487 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/hover-effect-image-read-understand#comment-1123181</link>
    <description> &lt;p&gt;Thanks for the help.  Yea, that javascript example was just like what I was talking about.&lt;/p&gt;
&lt;p&gt;Thanks&lt;br /&gt;
Bryan&lt;/p&gt;
 </description>
     <pubDate>Sat, 11 Jan 2003 03:14:19 +0000</pubDate>
 <dc:creator>jag5311</dc:creator>
 <guid isPermaLink="false">comment 1123181 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/hover-effect-image-read-understand#comment-1123178</link>
    <description> &lt;p&gt;You can also make it a background in CSS and reserve space for it -- &lt;a href=&quot;http://www.tantek.com/log/&quot; class=&quot;bb-url&quot;&gt;tantek.com/log/&lt;/a&gt; does this for his flags, but for some reason they don&#039;t show in N7.&lt;/p&gt;
&lt;p&gt;CSS is a superior option because it keeps the scripting out of the content, and allows the content to remain pure.&lt;/p&gt;
 </description>
     <pubDate>Sat, 11 Jan 2003 00:44:24 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1123178 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/hover-effect-image-read-understand#comment-1123173</link>
    <description> &lt;p&gt;You could do an OnMouseOver with the link and use JS to change the visible atribute to &#039;visible&#039; and onMouseOut to make it &#039;hidden&#039;. I do something like that on my new design, except you only need to hover over the image which is already shown.&lt;/p&gt;
&lt;p&gt;EXAMPLE:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;img src=&amp;#039;image.jpg&amp;#039; stlye=&amp;#039;visibility: hidden&amp;#039; id=&amp;#039;imageid&amp;#039;&amp;gt;&lt;br /&gt;&amp;lt;a href=&amp;#039;link.com&amp;#039; OnMouseOver=&amp;#039;document.all.imageid.style.visibility=&amp;quot;visible&amp;quot;&amp;#039; OnMouseOut=&amp;#039;document.all.imageid.style.visibility=&amp;quot;hidden&amp;quot;&amp;#039;&amp;gt;Link&amp;lt;/a&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Fri, 10 Jan 2003 23:15:55 +0000</pubDate>
 <dc:creator>necrotic</dc:creator>
 <guid isPermaLink="false">comment 1123173 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/hover-effect-image-read-understand#comment-1122808</link>
    <description> &lt;p&gt;I have too much time on my hands so here is a direct link:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.javascriptkit.com/script/script2/arrowimage.shtml&quot; class=&quot;bb-url&quot;&gt;http://www.javascriptkit.com/script/script2/arrowimage.shtml&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Was that what you wanted? :S&lt;br /&gt;
Oh BTW it wasn&#039;t under the links section it was the images section &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 05 Jan 2003 23:27:33 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1122808 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/hover-effect-image-read-understand#comment-1122806</link>
    <description> &lt;p&gt;check out &lt;a href=&quot;http://www.javascriptkit.com&quot; class=&quot;bb-url&quot;&gt;http://www.javascriptkit.com&lt;/a&gt; and look in the free javascripts section and it&#039;s under the link effects section there &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt; that&#039;s if you understood that &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt; if not jsut ask and i&#039;ll give you a direct link&lt;/p&gt;
 </description>
     <pubDate>Sun, 05 Jan 2003 23:09:03 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1122806 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/hover-effect-image-read-understand#comment-1122799</link>
    <description> &lt;p&gt;you can also use CSS and list-item declarations for this, using the psuedo-element :hover on the li element, but again, not in IE.&lt;/p&gt;
 </description>
     <pubDate>Sun, 05 Jan 2003 18:45:22 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1122799 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/hover-effect-image-read-understand#comment-1122798</link>
    <description> &lt;p&gt;Which browsers? (it makes a difference).&lt;/p&gt;
&lt;p&gt;CSS3 properties are supported in Mozilla (and N7) so you can use some psuedo elements that allow for having images pop up.&lt;/p&gt;
&lt;p&gt;Such as -- &lt;a href=&quot;http://secrets.synapticimpulse.com&quot; class=&quot;bb-url&quot;&gt;http://secrets.synapticimpulse.com&lt;/a&gt; if you view in N7 or Mozilla (or Chimera? Not sure) you can see images that are not available in IE. I don&#039;t think I have any that work with :hover, but there&#039;s no reason why not.&lt;/p&gt;
 </description>
     <pubDate>Sun, 05 Jan 2003 18:41:23 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1122798 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
