Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

});

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.