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