HTML Click Works in IE, not FireFox, Chrome - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T14:58:33Z http://stackoverflow.com/feeds/question/277437 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/277437/html-click-works-in-ie-not-firefox-chrome 1 HTML Click Works in IE, not FireFox, Chrome Raintree 2008-11-10T09:40:54Z 2008-11-10T10:18:50Z <p>This has got to be something simple: I set up a frames page with two possible sources for the target frame based on a form with two options. I used the OnClick event to trap the user's click to show the appropriate page. It works fine in Internet Explorer 7, swapping the two source pages. FireFox 3 and Chrome show only the default source.</p> <p>HEAD Script section:</p> <pre><code>function SwapInlineFrameSource() { var rsRadio, rsiFrame; rsRadio=document.getElementById('County'); rsiFrame=document.getElementById('RatesFrame') if (rsRadio.checked===true) { rsiFrame.src="SantaCruzRates.htm"; } else { rsiFrame.src="DelNorteRates.htm"; } } </code></pre> <p>BODY Form section (commented to show up here):</p> <pre><code>&lt;input type="radio" value="SC" checked name="County" onclick="SwapInlineFrameSource()"&gt; Santa Cruz &lt;input type="radio" value="DN" name="County" onclick="SwapInlineFrameSource()" &gt; Del Norte </code></pre> <p>What am I missing? (Live example: <a href="http://www.raintrees.com/rates.html" rel="nofollow">http://www.raintrees.com/rates.html</a>)</p> <p>Thanks!</p> <p>mr</p> http://stackoverflow.com/questions/277437/html-click-works-in-ie-not-firefox-chrome/277451#277451 0 Answer by Jack Ryan for HTML Click Works in IE, not FireFox, Chrome Jack Ryan 2008-11-10T09:48:08Z 2008-11-10T09:48:08Z <p>I don't believe that getElementById works on frames in firefox. I have always used the frames["frameID"], which seems to work more consistently.</p> http://stackoverflow.com/questions/277437/html-click-works-in-ie-not-firefox-chrome/277456#277456 2 Answer by kouPhax for HTML Click Works in IE, not FireFox, Chrome kouPhax 2008-11-10T09:50:36Z 2008-11-10T09:50:36Z <p>Your code is wrong....</p> <pre><code>var rsRadio, rsiFrame; rsRadio=document.getElementById('County'); rsiFrame=document.getElementById('RatesFrame') if (rsRadio.checked===true) { </code></pre> <p>I assume you mean getElementsByName and not ID becasue you don't have an ID of county on those radio buttons.</p> <p>In fact you need to determine which radio button is checked so you could some thing like (assuming there are only ever the 2 options)</p> <pre><code>if(document.getElementsByName()[0].checked){ // show Santa Cruz Rates }else{ // show other rates } </code></pre> http://stackoverflow.com/questions/277437/html-click-works-in-ie-not-firefox-chrome/277458#277458 7 Answer by OJ for HTML Click Works in IE, not FireFox, Chrome OJ 2008-11-10T09:51:16Z 2008-11-10T10:18:50Z <p>You are using getElementByID, but you aren't specifying IDs for your inputs. Perhaps consider this instead:</p> <pre><code>function SwapInlineFrameSource(rdoButton) { rsiFrame = document.getElementById("RatesFrame"); rsiFrame.src = rdoButton.value; } &lt;input type="radio" value="SantaCruzRates.htm" checked="checked" name="County" onClick="SwapInlineFrameSource(this);"&gt;Santa Cruz&lt;/input&gt; &lt;input type="radio" value="DelNorteRates.htm" name="County" onClick="SwapInlineFrameSource(this);"&gt;Del Norte&lt;/input&gt; </code></pre>