Create Page Scroll Indicator in 2 simple steps
Scroll Indicator is basically a line which fills up based on how much the user has scrolled in the page. They are usually positioned at the Top of the page but can differ based on the design and requirement. In this post, we will be implementing Scroll…
Implement World Map using jVectorMap
jVectorMap uses only native browser technologies like JavaScript, CSS, HTML, SVG or VML. No Flash or any other proprietary browser plug-in is required. This allows jVectorMap to work in all modern mobile browsers. Many maps of the world, world regions,…
How to create Go To Top button in a Webpage ?
In this article we will be learning to create a Go To Top Button in our webpage. We will show a Go To Top button in our webpage if user is not in the top. On clicking the button, the user will be taken to the top of the webpage with smooth animation.…
Hangman Game in PHP : Complete Source Code
Hangman is a paper and pencil guessing game for two or more players. One player thinks of a word, phrase or sentence and the other(s) tries to guess it by suggesting letters within a certain number of guesses. Complete Source Code config.php <?php…
How to run a Linux command in background ?
Running a command in the background can be useful when the command will run for a long time and does not need supervision. It leaves the screen free so you can use it for other work. In addition, it doesn’t stop the next processes or commands in…
How to detect AdBlocker using JavaScript ?
Ad blocking or ad filtering is a software capability for removing or altering online advertising in a web browser or an application. An ad blocker is a program that will remove different kinds of advertising from a Web user’s experience online.…
Speech to Text Conversion using JavaScript
In this article, we will be implementing a basic web application for speech to text conversion using JavaScript. Speech Recognition Speech recognition is a feature that gives us the ability to perform tasks using our spoken words as input. Speech…
Multiple File Upload with HTML and PHP
We might have been in situation where we need to upload multiple files from a form. If you are in same situation, then you are in right place for the solution. In this article, we are going to learn to upload multiple files with HTML and PHP. HTML…
Password Protect Website using .htaccess file
htaccess password protection can be very useful sometimes when we want only authorized users to access a certain webpage. This can be achieved easily by creating two files : .htaccess .htpassword You can create the username password file from this link :…
Install Laravel on Ubuntu with 4 simple steps
If you are looking to start your journey of Laravel, then this article is for you. You will learn to install Laravel one of the most popular PHP Framework currenly in Ubuntu Operating System. The OS I am using is Ubuntu 18.04 and we will be installing…
Use Multiple Google Maps in same webpage
In this article, we will be learning to use multiple Google Maps in a single webpage. We will be taking the help of Google Maps JavaScript API in order to load multiple instances of google maps in our page. HTML For displaying multiple maps, you need…
Simple Responsive YouTube Video Embeds
YouTube has become very popular among all user groups in recent times. Be it informative, factual videos or the comedy and entertainment ones, we all are a huge fan of YouTube. With the increasing popularity of YouTube videos, we often find ourselves…
Responsive FileManager as Standalone File Manager
In this post, we are going to implement Responsive FileManager as a standalone filemanager. We will be using JQuery along with Fancybox JavaScript and CSS for this. Source Code : <link rel="stylesheet"…
Show Sticky Footer when User Scroll Down using CSS and JavaScript
In this post, we are going to design a sticky footer section which can be used as an Advertisement Slot. The sticky footer will be visible only when user scrolls down. Once closed it wont be displayed until next reload. CSS : <style>…
Play Musical Notes with JavaScript
In music, a note is a symbol denoting a musical sound. In English usage a note is also the sound itself. Notes can represent the pitch and duration of a sound in musical notation. How cool it would be if we could play musical notes using JavaScript ? In…