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.
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;}