jQuery slide left and show

This feature is included as part of jquery ui http://docs.jquery.com/UI/Effects/Slide if you want to extend it with your own names you can use this. jQuery.fn.extend({ slideRightShow: function() { return this.each(function() { $(this).show(‘slide’, {direction: ‘right’}, 1000); }); }, slideLeftHide: function() { return this.each(function() { $(this).hide(‘slide’, {direction: ‘left’}, 1000); }); }, slideRightHide: function() { return this.each(function() { … Read more