Skip to content

JavaScript

How do I show some particular div after scroll 100 px?

  • by

You can achieve this by using javascript pageYOffset property to show the div after 100px of scroll.
The pageXOffset and pageYOffset properties returns the pixels the current document has been scrolled from the upper left corner of the window, horizontally and vertically.
The pageXOffset and pageYOffset properties are equal to the scrollX and scrollY properties. These properties are read-only.
Let us see the code:

 Read More »How do I show some particular div after scroll 100 px?

php_paypal

How to Integrate PayPal Standard Payment Gateway in PHP

  • by

PayPal is an American international e-commerce business allowing payments and money transfers to be made through the Internet. PayPal is the most popular payment gateway to send and receive payment worldwide. PayPal is a widely used payment gateway to accept payment in the web application. PayPal payment gateway is the easiest option for the web developer to implement a payment system on the website.

Read More »How to Integrate PayPal Standard Payment Gateway in PHP

scroll page load data

How to Load Data Dynamically on Page Scroll using jQuery and PHP ?

  • by

In this tutorial, we are going to see about loading data into a web page dynamically as the user scrolls it. We will be using jQuery and AJAX for the dynamic load on the scroll. Initially, we will show a limited number of results on page load. The subsequent bunch of records will be shown while scrolling down the page using jQuery AJAX event handler. This is an alternate solution for per-page navigation scenario.

scroll page load data

Read More »How to Load Data Dynamically on Page Scroll using jQuery and PHP ?