Re: [whatwg] Targetting different anchors after submitting the form

2006-03-07 Thread Ric Hardacre
Ian Hickson wrote: On Mon, 6 Mar 2006, Mikko Rantalainen wrote: Perhaps something along the lines form action=url input name=foo type=submit anchor=xfoo input name=bar type=submit anchor=xbar /form With WF2 you can just do: form action=url input name=foo type=submit action=url#xfoo

Re: [whatwg] Targetting different anchors after submitting the form

2006-03-07 Thread Mikko Rantalainen
Ric Hardacre wrote: Ian Hickson wrote: On Mon, 6 Mar 2006, Mikko Rantalainen wrote: Perhaps something along the lines form action=url input name=foo type=submit anchor=xfoo input name=bar type=submit anchor=xbar /form With WF2 you can just do: form action=url input name=foo

Re: [whatwg] Targetting different anchors after submitting the form

2006-03-07 Thread Anne van Kesteren
Quoting Ric Hardacre [EMAIL PROTECTED]: if only i could figure our how to compile the firefox source (i've tried on three seperate occasions it's just far too complicated with all the extra garbage you have to install and configure first!) i could see this as something i could put in a local

Re: [whatwg] Targetting different anchors after submitting the form

2006-03-06 Thread ROBO Design
Le Mon, 06 Mar 2006 16:25:12 +0200, Mikko Rantalainen [EMAIL PROTECTED] a écrit: Currently it's possible to do stuff like this form action=url#anchor input name=foo type=submit input name=bar type=submit /form and the UA scrolls down to element with id anchor on the page returned by the

Re: [whatwg] Targetting different anchors after submitting the form

2006-03-06 Thread Ric Hardacre
ROBO Design wrote: Is it too much to add a new attribute for something like this? Note that the server cannot see any of these anchor urls. Only the UA is able to scroll to correct position after receiving output from the server. Maybe adding an attribute for this sole purpose is too

Re: [whatwg] Targetting different anchors after submitting the form

2006-03-06 Thread Anne van Kesteren
Quoting ROBO Design [EMAIL PROTECTED]: ... form action=order_place.asp input type=submit value=PLACE ORDER input type=submit value=SAVE QUOTE action=quote_add.asp#thanks input type=submit value=RECALCULATE TOTALS action=#here /form What's wrong with using the form attribute to point to

Re: [whatwg] Targetting different anchors after submitting the form

2006-03-06 Thread Ric Hardacre
Anne van Kesteren wrote: Quoting ROBO Design [EMAIL PROTECTED]: ... form action=order_place.asp input type=submit value=PLACE ORDER input type=submit value=SAVE QUOTE action=quote_add.asp#thanks input type=submit value=RECALCULATE TOTALS action=#here /form What's wrong with using the form

Re: [whatwg] Targetting different anchors after submitting the form

2006-03-06 Thread Ric Hardacre
Anne van Kesteren wrote: Quoting ROBO Design [EMAIL PROTECTED]: ... form action=order_place.asp input type=submit value=PLACE ORDER input type=submit value=SAVE QUOTE action=quote_add.asp#thanks input type=submit value=RECALCULATE TOTALS action=#here /form What's wrong with using the form

Re: [whatwg] Targetting different anchors after submitting the form

2006-03-06 Thread Ian Hickson
On Mon, 6 Mar 2006, Mikko Rantalainen wrote: Perhaps something along the lines form action=url input name=foo type=submit anchor=xfoo input name=bar type=submit anchor=xbar /form With WF2 you can just do: form action=url input name=foo type=submit action=url#xfoo input

Re: [whatwg] Targetting different anchors after submitting the form

2006-03-06 Thread Lachlan Hunt
Mikko Rantalainen wrote: Currently it's possible to do stuff like this form action=url#anchor input name=foo type=submit input name=bar type=submit /form and the UA scrolls down to element with id anchor on the page returned by the server. It would be nice to be able to set target anchor on