http://qs321.pair.com?node_id=93713


in reply to How to escape frames on form submission

If the submisstion was with a link <A> tag then you could set target="_top". Don't know how to do that with a form submission.

However, on the returned html you can accomplish this with some javascript. The exact syntax escapes me but it's something like

if self.src != top.src top.src = self.src;
But this in the body onload() method.