DEV Community

Discussion on: Vanilla JS SlideDown/Up

Collapse
 
sysmaya profile image
sysmaya

I like it. But I prefer to add it as prototype, so I call the function "natively"

Element.prototype.slideUp= function ( duration) {
// Slide code
};

element.slideUp(500);
Enter fullscreen mode Exit fullscreen mode