<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1002510" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1002510</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/radio-buttons-again-my-function-still-does-not-work#comment-1011156</link>
    <description> &lt;p&gt;oh thanks &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;&lt;br /&gt;
JP&lt;/p&gt;
&lt;p&gt;----------&lt;br /&gt;
&lt;strong&gt;[red]The Next Step in Website Development [/red] - &lt;a href=&quot;http://www.what-next.com&quot; class=&quot;bb-url&quot;&gt;http://www.what-next.com&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;The Webmaster Promotion and Resource Center&lt;/strong&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 16 Oct 1999 01:25:00 +0000</pubDate>
 <dc:creator>JP Stones</dc:creator>
 <guid isPermaLink="false">comment 1011156 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/radio-buttons-again-my-function-still-does-not-work#comment-1011154</link>
    <description> &lt;p&gt;Sorry I am too rushed to look at the script, but what is it actually meant to do?&lt;br /&gt;
Thanks,&lt;br /&gt;
JP&lt;/p&gt;
&lt;p&gt;----------&lt;br /&gt;
&lt;strong&gt;[red]The Next Step in Website Development [/red] - &lt;a href=&quot;http://www.what-next.com&quot; class=&quot;bb-url&quot;&gt;http://www.what-next.com&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;The Webmaster Promotion and Resource Center&lt;/strong&gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 14 Oct 1999 23:13:00 +0000</pubDate>
 <dc:creator>JP Stones</dc:creator>
 <guid isPermaLink="false">comment 1011154 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/radio-buttons-again-my-function-still-does-not-work#comment-1011155</link>
    <description> &lt;p&gt;It was meant to check to see if a radio button was checked, then perform a function. I always use alert boxes to check the integrity of my logic before hooking up to another function. The heart of my problem was identifying the radio button checked object. that turned out to be document.myForm.splitter[0].checked&lt;/p&gt;
 </description>
     <pubDate>Thu, 14 Oct 1999 17:52:00 +0000</pubDate>
 <dc:creator>zman</dc:creator>
 <guid isPermaLink="false">comment 1011155 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/radio-buttons-again-my-function-still-does-not-work#comment-1011153</link>
    <description> &lt;p&gt;Thanks again, mine looked good to me too but thats how this stuff is, you can look and look and just not get it! Thats why forums like this are so valuable, I hope to be a contributor as well when I get better!&lt;/p&gt;
 </description>
     <pubDate>Thu, 14 Oct 1999 03:09:00 +0000</pubDate>
 <dc:creator>zman</dc:creator>
 <guid isPermaLink="false">comment 1011153 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/radio-buttons-again-my-function-still-does-not-work#comment-1011152</link>
    <description> &lt;p&gt;&amp;lt;zman&amp;gt; I don&#039;t know why the yours didn&#039;t work because it looked OK to me but I didn&#039;t run it myself - I just pasted the script that I use when checking radio buttons.&lt;/p&gt;
 </description>
     <pubDate>Thu, 14 Oct 1999 03:03:00 +0000</pubDate>
 <dc:creator />
 <guid isPermaLink="false">comment 1011152 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/radio-buttons-again-my-function-still-does-not-work#comment-1011151</link>
    <description> &lt;p&gt;You are a JavaScript GOD...sorry you had to spell it out for me, I still really don&#039;t understand why the other one I wrote didn&#039;t work but I really appreciate your help!&lt;/p&gt;
 </description>
     <pubDate>Wed, 13 Oct 1999 21:10:00 +0000</pubDate>
 <dc:creator>zman</dc:creator>
 <guid isPermaLink="false">comment 1011151 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/radio-buttons-again-my-function-still-does-not-work#comment-1011150</link>
    <description> &lt;p&gt;&lt;strong&gt;INSERT BETWEEN &amp;lt;SCRIPT&amp;gt;&amp;lt;/SCRIPT&amp;gt; TAGS:-&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;function check() {&lt;br /&gt;
for (i=0; i&amp;lt;document.myForm.splitter.length; i++) {&lt;br /&gt;
  if (document.myForm.splitter[i].checked) {&lt;br /&gt;
   var selectedRadioIndex = i;&lt;br /&gt;
   }&lt;br /&gt;
  }&lt;br /&gt;
if (selectedRadioIndex == 0) {&lt;br /&gt;
  // Top Page Display script&lt;br /&gt;
  }&lt;br /&gt;
else {&lt;br /&gt;
  // Bottom Page Display script&lt;br /&gt;
  }&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;INSERT BETWEEN &amp;lt;BODY&amp;gt;&amp;lt;/BODY&amp;gt; TAGS:-&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;form name=&amp;quot;myForm&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;input type=&amp;quot;radio&amp;quot; name=&amp;quot;splitter&amp;quot; checked&amp;gt;Top Page Display&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;input type=&amp;quot;radio&amp;quot; name=&amp;quot;splitter&amp;quot;&amp;gt;Bottom Page Display&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;input type=&amp;quot;button&amp;quot; value=&amp;quot;send it&amp;quot; onClick=&amp;quot;javascript:check()&amp;quot;&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;/p&gt;
&lt;p&gt;----------&lt;br /&gt;
&lt;a href=&quot;mailto:lloydhass@hotmail.com&quot; class=&quot;bb-email&quot;&gt;lloydhass@hotmail.com&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://go.to/hass&quot; class=&quot;bb-url&quot;&gt;http://go.to/hass&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 13 Oct 1999 16:09:00 +0000</pubDate>
 <dc:creator />
 <guid isPermaLink="false">comment 1011150 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/radio-buttons-again-my-function-still-does-not-work#comment-1011148</link>
    <description> &lt;p&gt;I still cant get this to work...&lt;br /&gt;
Any Suggestions on my check function? Thanks&lt;/p&gt;
&lt;p&gt;function check()&lt;br /&gt;
 {&lt;br /&gt;
 if (document.myForm.radio[0].checked) {alert(&amp;quot;yes&amp;quot;)&lt;br /&gt;
 } else {alert(&amp;quot;dork&amp;quot;)}&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;&amp;lt;form NAME=&amp;quot;myForm&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;INPUT TYPE=&amp;quot;radio&amp;quot; NAME=&amp;quot;splitter&amp;quot; VALUE=&amp;quot;tp&amp;quot; &amp;gt;Top Page Display&amp;lt;p&amp;gt;&lt;br /&gt;
 &amp;lt;input type=&amp;quot;radio&amp;quot; NAME=&amp;quot;splitter&amp;quot; VALUE=&amp;quot;bp&amp;quot; &amp;gt;Bottom Page Display&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;form&amp;gt;&lt;br /&gt;
   &amp;lt;input type=&amp;quot;button&amp;quot; value=&amp;quot;send it&amp;quot;&lt;br /&gt;
    onClick=&amp;quot;(check())&amp;quot;&amp;gt;&amp;lt;P&amp;gt;&lt;br /&gt;
&amp;lt;/form &amp;gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 13 Oct 1999 03:07:00 +0000</pubDate>
 <dc:creator>zman</dc:creator>
 <guid isPermaLink="false">comment 1011148 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
