Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two html pages with a dynamic content. In page 1 there are many buttons in the form of an image, and in page 2 I have a button that takes you back to page 1 to send data to the page 1.

At the beginning clik on the button in the page 1 and we go to page 2 of the containerized this page and fill in appyant dynamically on the button of the page 2 back to page 1. and so again in another time and click on the another button or same button previously of page 1, I displays page 2 and return to page 1 without without clicking anything, it is a return to page 1

Page 1

$('img').live('click',function(e) {

    e.preventDefault(); // stops default behaviour ie reloa 
    window.localStorage.setItem("id_grp", id_grp_tr);
    window.localStorage.setItem("id_travail", e.target.name);

    //$(location).attr('href','../prestation_html/list_rubrique.html');

    $.mobile.changePage('../prestation_html/list_rubrique.html');

    return false;
});

Page 2

$('#lbtn').append('<input type="button" value="Consulter" id="consulter" >');

$("#consulter").live('click',function(e) {

    e.preventDefault(); // stops default behaviour ie reloa
    var sel_id_rub = $('input[name=opt1]:checked').attr('id');//ID of Rubrique

    window.localStorage.setItem("id_rub", sel_id_rub);       //Id Rubrique
    liste_Phrase();
    // return false;
});
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.