Jquery left slide issues?

hello i want to make one page whether two data should come through the help of smoothly left slide one by one which is not happening like that please help me if as soon as possible fast.

✅ Answers

? Best Answer

  • Use this code: jQuery.fn.extend({
    slideRightShow: function() {
    return this.each(function() {
    $(this).show(‘slide’, {direction: ‘right’}, 10);
    });
    },
    slideLeftHide: function() {
    return this.each(function() {
    $(this).hide(‘slide’, {direction: ‘left’}, 10);
    });
    },
    slideRightHide: function() {
    return this.each(function() {
    $(this).hide(‘slide’, {direction: ‘right’}, 10);
    });
    },
    slideLeftShow: function() {
    return this.each(function() {
    $(this).show(‘slide’, {direction: ‘left’}, 10);
    });
    }
    });
  • Leave a Comment