How to set a timer in jQuery?

By Faruque Ahamed Mollick

In this post, we are going to learn a simple yet useful jQuery trick. here we are going to see how to set a timer using jQuery. In a project, it may be needed to set a timer which .... Read More

Convert Unix timestamp into a formatted understandable time string in PHP

By Faruque Ahamed Mollick

Often Unix time format is used in programming related work. But this type of time or date format is not understandable by the human. So it should be converted into a human readabl.... Read More

Open and close Bootstrap modal with jQuery

By Faruque Ahamed Mollick

Bootstrap modal can easily open and close just with a button. Below is an example: <button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#theModal".... Read More

Remove duplicate values from an array in PHP

By Faruque Ahamed Mollick

In this post, we are going to see how to remove the duplicate values from an array in PHP. It may be necessary for many times to take only unique values from an array by removing a.... Read More

Add a custom widget area for custom WordPress theme – Theme development

By Faruque Ahamed Mollick

This tutorial is related to WordPress theme development. Reading this tutorial may be helpful for WordPress theme developers. We always notice that after installing and activating .... Read More

Fixed div element position in the top right corner using CSS?

By Faruque Ahamed Mollick

In this CSS tutorial, we are going to see how to keep a div element in the top right position so that it will not change the position and always be in that position even after scro.... Read More

Get the scroll position of a web page in the browser window using JavaScript

By Faruque Ahamed Mollick

We may be needed the scroll position of a web page in the browser window. So here in this tutorial, we are going to see how to get the scrolling position amount of a web page on th.... Read More

Calculate the difference between two dates in PHP

By Faruque Ahamed Mollick

In this PHP tutorial, we are going to calculate the date difference between two dates. At first, we will take two dates and by using PHP we will find how many days difference betw.... Read More

Related Posts