If position:sticky; is not working for an element on IOS devices while it’s working on all other major operating system’s and browsers. Then I’ll tell you how to fix that. First let me tell you why this happen at first place. When you try to use sticky position for an element whose container is an … Continue reading “Sticky Position not Working in IOS – Simple Fix”
Tag: CSS
Infinite Scroll without Plugin (With CSS and jQuery Only)
Simple example to add Infinite Scroll or Load More button to display more content without page refresh. It can be use for Blog posts, Portfolio items, Testimonials or for any other purpose according to your requirements. Below is the sample HTML markup <div class=”item”></div><div class=”item”></div><div class=”item”></div><div class=”item”></div><div class=”item”></div><div class=”item”></div><div class=”item”></div><div class=”item”></div><div class=”item”></div><a href=”” class=”load-more”>Load More</a> … Continue reading “Infinite Scroll without Plugin (With CSS and jQuery Only)”