Press "Enter" to skip to content

Posts published in “Web Development”

How to maintain the scroll of page we have visited previously using localStorage

0

Here’s the Code that I have used for maintaining the scroll of web page I have visited Previously using localStorage. $(function () {/scroll maintaining states/var storedResult = localStorage.getItem("location");var storedURL = localStorage.getItem("url");if (storedURL !== 'undefined' &&…

How to send Emails using Sendgrid in PHP?

0

In this tutorial, we are going to know how to send emails using Sendgrid in PHP. SendGrid is a customer communication platform marketing email. For PHP, SendGrid also provides its library that can be used…