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;
});