dreamnlead       See the Pen    Scrolling on the bottom div will scroll the top one  by satish mallick ( @satishmallick )   on CodePen . ...
Friday, 23 July 2021
Wednesday, 21 July 2021
OwlCarousel 2 with items counter index method
satish mallick
July 21, 2021
   See the Pen    OwlCarousel 2 with items counter index method  by satish mallick ( @dreamnlead )   on dreamnlead/ .   
Sunday, 4 July 2021
pure javascript image slider
satish mallick
July 04, 2021
    See the Pen     javascript image slider  by satish mallick ( @satishmallick )    on CodePen .         <html> <html lang="e...
Monday, 25 January 2021
Detect the scrolling to bottom of the page using jQuery.
satish mallick
January 25, 2021
$(window).on("scroll", function() {       var scrollHeight = $(document).height();       var scrollPosition = $(window).height() +...
Friday, 8 January 2021
Javascript .classList() API Cheatsheet
satish mallick
January 08, 2021
You have an element in the DOM and its ID id :  "el" <div id= "el" ></div> By using  querySelector : We can ...