Fix jQuery Click Event on Touch Devices (IOS)

If jQuery click event is not working on touch devices especially iPhone or iPad, the fix is quite simple. Lets say we have an anchor tag and you want to perform some activity on click with jQuery. <a href=”” id=”click-button”>Click Here</a> We normally write jQuery click event this way $(#click-button).click( function() { // Code Here … Continue reading “Fix jQuery Click Event on Touch Devices (IOS)”

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