I have the following jquery:
jQuery.fn.slideFadeToggle = function(speed, easing, callback) {
return this.animate({opacity: 'toggle', width: 'toggle'}, speed, easing, callback);
};
$(document).ready(function(){
$("#container_content_quick").hide();
$("#header").click(function () {
$("#container_content_quick").slideFadeToggle();
return true;
});
});
Basically fades in #container_content_quick from left to right.
I wonder if its possible to fade right to left?