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.

Possible Duplicate:
jQuery Toggle with Cookie

Am having a simple toggle, but the toggle always resets when the page refreshes, so I want to preserve its state by setting a cookie but am not having much Idea how should I do it...

Any idea how do I preserve the state of toggle?

http://jsfiddle.net/Qyufx/

<div class="question_trigger">
   <p>Hi</p>
</div>
<div class="toggle_container">
   <div class="block">Hello</div>
</div>


jQuery(document).ready(function(){
        jQuery(".toggle_container").hide();
        jQuery("div.question_trigger").click(function(){
        jQuery(this).toggleClass("active").next().toggle("slow");
    });
});​

share|improve this question
do you only need to preserve the state on reload or if one came back after being somewhere else? – Bastian Rang Jan 1 at 11:13
I need to preserve the state till the user is logged in :) – Random Guy Jan 1 at 11:14
@Joddy can you provide me with a fiddle integrating that plugin? – Random Guy Jan 1 at 11:29
@Barmar what do you understand from that answer cuz I cannot – Random Guy Jan 1 at 11:32
show 8 more comments

marked as duplicate by Barmar, Palash Mondal, Praveen Kumar, competent_tech, Martin Jan 1 at 18:07

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 2 down vote accepted

Solution using cookie:

jQuery(document).ready(function() {
    jQuery(".toggle_container").toggle($.cookie('showTop') != 'collapsed');
    jQuery("div.question_trigger").click(function() {
        jQuery(this).toggleClass("active").next().toggle();
        var new_value = $(".toggle_container").is(":visible") ? 'expanded' : 'collapsed';
        $.cookie('showTop', new_value);
    });
});​

FIDDLE

share|improve this answer
You are just awesome man thank you very very much, I really appreciate it.. – Random Guy Jan 1 at 14:26

Basic solution using PHP session variable to store the toggle state

Step 1 : Set the container visible or not durring page loading by checking the PHP session variable value :

jQuery(document).ready(function(){
    if(<?php echo (isset($_SESSION['userId']['toggleState'] && $_SESSION['userId']['toggleState'] === FALSE) ? 'true' : 'false'; ?>)
        $('.toggle_container').hide();
});

Step 2 : Add the script to update the PHP session variable

jQuery(document).ready(function(){
        jQuery(".toggle_container").hide();

        jQuery("div.question_trigger").click(function(){
            jQuery(this).toggleClass("active").next().toggle("slow");

            var data = ($(this).is(":visible")) ? 'true' : 'false';
            $.ajax({
              url: 'ajax/update.php',
              method : 'post',
              data : {data : data},
              success: function(data) {
                  console.log('data updated');
              },
              error: function (request, status, error) {
                  alert(request.responseText);
              }
            });
        });
});​

Step 3 : implement ajax/update.php code (use the real userId database value)

<?php
    $_SESSION['userId']['toggleState'] = (isset($_POST['data']) && $_POST['data'] === 'true') ? true : false;
?>
share|improve this answer
thank you for helping me out :) – Random Guy Jan 1 at 14:26

Not the answer you're looking for? Browse other questions tagged or ask your own question.