Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: General / Current Version (Old)
 Jump menu breaks out of frames
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

yirm
Starting Member

2 Posts

Posted - 01 August 2001 :  00:50:09  Show Profile
I'm running a forum which is within a frameset. Everything is fine, except when I make a selection from the jump menu, it breaks out of the frameset and goes to the top.

I tried looking at inc_jump_to.asp, but I cannot figure out why it's breaking out of the frameset nor how to prevent this.

Any ideas?

TIA.

-Jeremy

BugLaden
Starting Member

45 Posts

Posted - 01 August 2001 :  08:08:04  Show Profile  Visit BugLaden's Homepage  Send BugLaden an AOL message
Thanks for pointing this out. I am running a site similar in structure to yours and after testing have confirmed this. I fixed mine by changing the following:

active.asp(98)

From:
function jumpTo(s) { if (s.selectedIndex != 0) top.location.href = s.options[s.selectedIndex].value;return 1;}
To:
function jumpTo(s) { if (s.selectedIndex != 0) location.href = s.options[s.selectedIndex].value;return 1;}


forum.asp(250)

From:
function jumpTo(s) {if (s.selectedIndex != 0) top.location.href = s.options[s.selectedIndex].value;return 1;}
To:
function jumpTo(s) {if (s.selectedIndex != 0) location.href = s.options[s.selectedIndex].value;return 1;}


topic.asp(201)

From:
function jumpTo(s) {if (s.selectedIndex != 0) top.location.href = s.options[s.selectedIndex].value;return 1;}
To:
function jumpTo(s) {if (s.selectedIndex != 0) location.href = s.options[s.selectedIndex].value;return 1;}


-=BugLaden
CCG Workshop Developer
http://www.ccgworkshop.com
ePublishing the Collectible Card Game

Edited by - BugLaden on 01 August 2001 08:09:00
Go to Top of Page

yirm
Starting Member

2 Posts

Posted - 01 August 2001 :  13:20:30  Show Profile
Thanks! You rock.

-Jeremy

Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.24 seconds. Powered By: Snitz Forums 2000 Version 3.4.07