How can I recieve ‘changePage parameter’

How can I recieve ‘changePage parameter’

BY 16 Nov 2014 Web Application Development

I make some code about popup’s parameter..    and This code is works good…     

****

    tau.event.on(btnPopupElement, “tap”, function(event){
        popup.option(“param1”, document.getElementById(“txtInput”).value);
        popup.open();
    });
    
    divPopupElement.addEventListener(“popupafteropen”, function(){
        document.getElementById(“txtPopup”).value = popup.option(“param1”);
    });

****

 

 I want to make some code about changePage html page to html page(‘html page’) … 

but,  I don’t know about it’s way …

page1.html 

    tau.event.on(document.getElementById(“moveNewPage”), “tap”, function(event){
        console.log(“hi2”);
        var options = {PARAM1:document.getElementById(“txtInput”).value};
        tau.changePage(“newpage.html”, options);  –-> Is this right? or use like jQuery Mobile  *** tau.changePage(“newpage.html?param1=test”, options);  ***

        // but newpagehtml?param1=test   ==> It seems that this way is not good shape to use… 

    });   

 

page2.html

$(“#newpage” ).on( “pageshow” , function(event) {

    // I don’t know how can I get txtInput.value from page1.html… It there formal way about file to file parameter send and receive..

   // Is there any example  of  parameter sending and receiving  at file to file .

})

thanks for reading…   

Written by