jQuery .toggle from right to left?

jQuery .toggle from right to left?

$(function(){
                $(document).on("click","#B",function(){
                    $("#side").toggle();
                });
            });

This toggles it on and off when I click the button... How do I make the div #side slide in from right to left and then back?