HTML Click Works in IE, not FireFox, Chrome - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T14:58:33Zhttp://stackoverflow.com/feeds/question/277437http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/277437/html-click-works-in-ie-not-firefox-chrome1HTML Click Works in IE, not FireFox, ChromeRaintree2008-11-10T09:40:54Z2008-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><input type="radio" value="SC" checked name="County" onclick="SwapInlineFrameSource()">
Santa Cruz
<input type="radio" value="DN" name="County" onclick="SwapInlineFrameSource()" >
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#2774510Answer by Jack Ryan for HTML Click Works in IE, not FireFox, ChromeJack Ryan2008-11-10T09:48:08Z2008-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#2774562Answer by kouPhax for HTML Click Works in IE, not FireFox, ChromekouPhax2008-11-10T09:50:36Z2008-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#2774587Answer by OJ for HTML Click Works in IE, not FireFox, ChromeOJ2008-11-10T09:51:16Z2008-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;
}
<input type="radio" value="SantaCruzRates.htm" checked="checked" name="County" onClick="SwapInlineFrameSource(this);">Santa Cruz</input>
<input type="radio" value="DelNorteRates.htm" name="County" onClick="SwapInlineFrameSource(this);">Del Norte</input>
</code></pre>