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.

Is there a way to show a fixed position div in a Canvas app with a "setAutoGrow()" turned on ? I want to be able to show a Feedback widget that will always be visible to the user, even when scrolling up an down.

share|improve this question
im having the same issue, did you find a fix? – t q Oct 17 '12 at 20:56

1 Answer

        var fixed = function() {
            FB.Canvas.getPageInfo(function(pageInfo) {
                var offset = Math.max(parseInt(pageInfo.scrollTop) - parseInt(pageInfo.offsetTop), 0);
                $("#menu").animate({
                    top: Math.max(offset, 0)
                }, 100);
                fixedTimer = setTimeout(fixed, 200);
            });
        };

use this function if you whant to keep element at top.

share|improve this answer

Your Answer

 
discard

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

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