Javascript code for handling Form behaviour.

Posted by Andrew on Stack Overflow See other posts from Stack Overflow or by Andrew
Published on 2009-12-17T00:30:38Z Indexed on 2010/04/04 5:03 UTC
Read the original article Hit count: 294

Filed under:
|

Hello,

Here's how the situation looks :

I have a couple simple forms

<form action='settings.php' method='post'>
<input type='hidden' name='setting' value='value1'>
<input type='submit' value='Value1'>
</form>

Other small forms close to it have value2, value3, ... for the specific setting1, etc.

Now, I have all these forms placed on the settings.php subpage, but I'd also like to have copies of one or two of them on the index.php subpage (for ease of access, as they are in certain situations rather frequently used). Thing is I do not want those forms based on the index.php to redirect me in any way to settings.php, just post the hidden value to alter settings and that's all.

How can I do this with JS ?

Cheers

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about forms