On Tue, 8 Mar 2005, Alex Brelsfoard wrote: > Is there any way to have the content all spat out and then send some > sort of message to the browser telling it to go to a specific anchor > point on that page?
Yes. The html uses a <a name="foo">Foo</a> non-linking anchor, e.g. <a name="target">Target</a> <input name="target" value=""> The URL then points to this anchor: http://your.server/path/to/form#target Or maybe, for a GET request, it might look like this: http://your.server/path/to/form?any=args&go=here#target When the URL loads, the browser will scroll to the #target. -- Chris Devers _______________________________________________ Boston-pm mailing list [email protected] http://mail.pm.org/mailman/listinfo/boston-pm

