vote up 0 vote down star

Hi

I have a form on a page and I want to pass a form inputbox value to another inputbox on another form on another page without using URL variables - is this possible?

They both share the same header page section if that is of any help.

Thanks

Jonathan

flag

45% accept rate

2 Answers

vote up 2 vote down check

To elaborate on @BoltBait - this is a basic example, using JQuery + the cookie plugin

On the first page

<script type="text/javascript">
    // set the cookie, on click to the next page
    $("#next-page").click(function() {
        $.cookie("INPUTBOX",$("input[name=inputbox]").val());
    });
</script>

And on the next page

<script type="text/javascript">
    // get the cookie, we are now on the next page
    alert($.cookie("INPUTBOX"));
</script>

Hope this helps

link|flag
Thanks- that really helped - much appreciated – Jonathan Lyon Oct 10 at 13:27
vote up 0 vote down

You could do it using a cookie, if both pages are on the same web server.

link|flag
any possibility you can elaborate with a code sample please? – Jonathan Lyon Oct 9 at 23:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.