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.

Here is what I have, and then ill explain what I am looking to do.

$(document).ready(function () { 
$('.search-btn').click(function() {
    $(this).toggleClass('active');
    $('search-form-wrap').toggleClass('visibility');
    $('.search-form').blindLeftToggle('slow');
});
});

When search-btn is clicked, the active class is toggled to give a button an active state, then, what my intention was, was to make the search-form-wrap become visible via the toggleClass, then the animation toggle runs on .search-form which is contained within this search-form-wrap element. Then when search-btn is clicked again, the animation toggles, and then finally the visibility class is toggled.

I am doing this because search-form-wrap is absolutely positioned over other clickable elements, and when not visible needs to be hidden as to allow the elements underneath to be clicked on.

The blindLeftToggle is as so:

jQuery.fn.blindLeftToggle = function(speed, easing, callback) {
var h = this.width() + parseInt(this.css('paddingLeft'), 10) + parseInt(this.css('paddingRight'), 10);
return this.animate({
    marginLeft: parseInt(this.css('marginLeft'), 10) < 0 ? 0 : -h
}, speed, easing, callback);
};
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.