|
|
Q323 Is it possible to combine forms and replace() so that the form submission does not create a history entry?
irt.org | Knowledge Base | JavaScript | History | Q323 [ previous next ] Q323 Is it possible to combine forms and replace() so that the form submission does not create a history entry?Not if you want to use a method="POST". If however you are using method="GET", then we could possibly rewrite the form so that it doesn't use the action and method attributes but just changes the location using JavaScript, but with the form name-value pairs tacked on the end as if we had sent the form using method="GET":
Note: in Opera replace() will work, but only with absolute URL's. |
-- div -->
|