Works in IE, but not in Netscape . . .

admin

Administrator
Staff member
I know everyone has had cross browser compatability problems before. I'm just now getting to the point where I'm also having a serious problem with a drop down menu, that uses auto-redirect (no "go" button. I wouldn't mind using one if I could find a script that would work with frames)<br />
<br />
Here's my URL - <!-- m --><a class="postlink" href="http://www.austinsings.com/home.html">http://www.austinsings.com/home.html</a><!-- m --><br />
The drop down was working fine in Netscape, but something happened out of the blue & now it's all wierd in Netscape.<br />
<br />
Any help would be greatly appreciated (especially since anyone looking at my site in Netscape won't be able to use my drop down menu)<br />
<br />
Thanks,<br />
Rockrz<br />
<br />
Here's the code I'm using . . . .<br />
<br />
in the head<br />
<br />
<SCRIPT LANGUAGE="JavaScript"><br />
<!-- Begin<br />
<br />
function checkMenu(param) {<br />
if (param != "'',''") <br />
eval('loadFrames(' + param + ')');<br />
}<br />
function loadFrames(frame1,page1) {<br />
eval("parent."+frame1+".location='"+page1+"'");<br />
}<br />
<br />
// End --><br />
</script><br />
<br />
in the body<br />
<br />
<select name=sitemenu onChange="checkMenu(this.options[this.selectedIndex].value)" style="COLOR: #000000; BACKGROUND-COLOR: #ffff00"><br />
<option value="'',''">---------SELECT A PAGE---------</option><br />
<option value="'main','sitesponsors.html'">Meet Our Sponsors</option><br />
<option value="'main','whatiskaraoke.html'">What Is Karaoke?</option><br />
<option value="'main','10commandments.html'">Karaoke 10 Commandments</option><br />
<option value="'main','http://pub66.ezboard.com/baustinsingsdiscussionforums'"><br />
AustinSingers Talk Talkboard</option><br />
<option value="'main','emaillist.html'">Join our E-Mail List</option><br />
<option value="'main','referrals.html'">Karaoke Show Referrals</option><br />
<option value="'main','sponsor.html'">Become A Sponsor</option><br />
<option value="'main','hotlinks.html'">HOT Local Links</option><br />
<option value="'main','othercities.html'">Other Texas Cities</option><br />
<option value="'main','webrings.html'">WebRings</option><br />
<option value="'main','sitesponsors.html'">MEET AUSTIN's KJs</option><br />
<option value="'main','sitesearch.html'">SEARCH AustinSings.com</option><br />
<option value="'main','main.html'"> - - - - - H O M E P A G E - - - -</option><!--content-->are you using the <form></form> tags?? netscape won't know what to do with the select box without those.<br />
<br />
this might be the problem<br />
<br />
<center><IMG height=47 alt=" AustinSings.com - THE Central Texas Karaoke Connection " src=http://www.htmlforums.com/archive/index.php/"Graphics/as-logo.gif" width=285 border=0></center></TD><br />
<TD><P align="left"></form><select name=sitemenu onChange="checkMenu(this.options[this.selectedIndex].value)" style="COLOR: #000000; BACKGROUND-COLOR: #ffff00" ><br />
<br />
then you have one of those at the end. typo??<!--content-->
 
Back
Top