<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1024274" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1024274</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/why-doesnt-script-work#comment-1148608</link>
    <description> &lt;p&gt;Sorry about the gender mix up; I just grabbed the name from the pics.  Regarding your fix: you are still not preloading anything.&lt;/p&gt;
&lt;p&gt;Vinny&lt;/p&gt;
 </description>
     <pubDate>Tue, 30 Mar 2004 21:37:31 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1148608 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/why-doesnt-script-work#comment-1148590</link>
    <description> &lt;p&gt;First of all, my name is not Laurie.  I&#039;m just working on her website.  Based on my screenname, I think that you can figure out that I&#039;m a guy.   &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;&lt;/p&gt;
&lt;p&gt;And thanks for the info, but I already figured it out.  All I had to do was change the body tag of the new page to the following and it works perfectly:&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;If I had more time, I&#039;d compare my code to yours, but I don&#039;t.  Thanks though.&lt;/p&gt;
 </description>
     <pubDate>Tue, 30 Mar 2004 15:25:54 +0000</pubDate>
 <dc:creator>LABachlr</dc:creator>
 <guid isPermaLink="false">comment 1148590 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/why-doesnt-script-work#comment-1148584</link>
    <description> &lt;p&gt;Hi Laurie,&lt;/p&gt;
&lt;p&gt;  Let me start with: That&#039;s too much &lt;strong&gt;M&lt;/strong&gt;ickey &lt;strong&gt;M&lt;/strong&gt;ouse code for me to look through.  Second, it is not preloading anything.  &#039;Pre&#039; means to do something before something else -- in this case, before loading -- however, since it is in a function that is called with the &#039;onload&#039; event handler, the loading is actually taking place after the page is displayed. (if you haven&#039;t guessed by now, I&#039;m not thrilled with dreamweaver -- I would rather stay awake and write my own code than use its string of spaghetti code &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;&lt;/p&gt;
&lt;p&gt;If all you want is to display a larger image when a smaller one is clicked, the following will do just that:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;amp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;lt&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;script type&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=\&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;text/javascript\&quot;&amp;amp;gt;&lt;br /&gt;var bin = \&quot;http://members.aol.com/grassblad/images/\&quot;&lt;br /&gt;var picsSrc = new Array(\&quot;grassAvatar.jpg\&quot;, \&quot;moi.jpg\&quot;);&lt;br /&gt;var pics = new Array();&lt;br /&gt;&lt;br /&gt;for (var i = 0; i &amp;lt; picsSrc.length; i++)&lt;br /&gt;{&lt;br /&gt;&amp;nbsp; pics[i] = new Image();&lt;br /&gt;&amp;nbsp; pics[i].src = bin + picsSrc[i];&lt;br /&gt;}&lt;br /&gt;function doit(num)&lt;br /&gt;{&lt;br /&gt;&amp;nbsp; document.theBigPic.src = pics[num].src;&lt;br /&gt;}&lt;br /&gt;&amp;amp;lt;/script&amp;amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;img name=\&quot;theBigPic\&quot; height=\&quot;200\&quot; width=\&quot;200\&quot; src=\&quot;http://members.aol.com/grassblad/images/moiAvatar.jpg\&quot;&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;a href=\&quot;#\&quot; onclick=\&quot;doit(0)\&quot;&amp;gt;&amp;lt;img src=\&quot;http://members.aol.com/grassblad/images/grassAvatar.jpg\&quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;a href=\&quot;#\&quot; onclick=\&quot;doit(1)\&quot;&amp;gt;&amp;lt;img src=\&quot;http://members.aol.com/grassblad/images/moiAvatar.jpg\&quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;Vinny&lt;/p&gt;
 </description>
     <pubDate>Tue, 30 Mar 2004 13:40:45 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1148584 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
