Passing the Values Back

Hi,
I have two pages A.HTML, B.HTML.

In A.HTML using the Window.Open, I am opening B.HTML...
In B.HTML I am selecting some values... which is stored in the text fields..
I want to pass it back to A.HTML's Hidden Variables or normal text fields..
Is there anyway to do this...?

Thanks in Advacne for your response..
Kangs

Comments

  • hey kangs,
    may be you didnt get any help but in future somebody may use this.
    copy both a.htm and b.htm in same directory and open a.htm
    a.htm
    [code]


    a.htm

    function verify(){
    window.open( "b.htm" );
    }








    [/code]

    b.htm
    [code]


    b.htm

    function reflectBack(){
    var field = event.srcElement;
    window.opener.document.getElementById(field.id).value = field.value;
    }







    [/code]
    --------------------------------------------
    When going gets tough, you gotta get tough !
    --------------------------------------------

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion