actually using pageshow event i can manage to update variables depends on login callback, and 'logged' changed from false to true . But it seems it fails to apply updated condition when those variables have changed
$(document).bind("pageshow", function(){
var opt = $('#option');
var noti = $('#notifications');
var nav = $('#navi');
var sign = $('#sign');
//Menus
var optMn = $('#optMenu');
//Initiate default state when logged = false all the element i've hidden is hidden
if(!logged){
opt.hide();
noti.hide();
nav.hide();
optMn.hide();
}else{
//even variables logged = true, 'sign' element is still showing
sign.hide();
}
});