HTML Form to Google Sheet | Working Solution 2022

Recently, I’ve got a project in which I have to send data from HTML form to Google Sheet. After a lot of issues, I finally able to get a working solution. So, I am sharing a working solution that might help you in any of your project(s) and save your time. Example Form Suppose we … Continue reading “HTML Form to Google Sheet | Working Solution 2022”

Sticky Position not Working in IOS – Simple Fix

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”

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)”