quote: 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 made the following changes:
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;}