Full-screen image based homepage is the very popular design concept and it is adapted by many websites. Whenever web designer adds the full-screen image on the landing page, a requirement to...
Sunday, 13 November 2016
Saturday, 29 October 2016

Image preloading using javascript
Image preloading is the concept comes in a consideration for websites those are image-heavy or in simple term, having lots of images like photo gallery or image based catalog. For image based catalog when the browser tries...
Saturday, 8 October 2016

Disable cut(CTRL+X), copy(CTRL+C), paste(CTRL+V) and mouse right click in web page
In this article, I am going to share you how you can disable right-click and cut/copy/paste keyboard option using JavaScript and HTML on your web page. Before starting anything I am going to give you brief...
Sunday, 2 October 2016

Create Loading icon using CSS
"Loading icon" or "Loader" are frequently used in web applications to show, the complex process is running behind the screen. Mostly, GIF images are used to create loader but they can be heavy...
Thursday, 29 September 2016

Setup a simple server using Python
Today I will share you how to setup server quickly using Python in Windows in 5 easy steps. Step 1 : Download python Go to Python's official site and select the suitable version for your system and download. Here...
Wednesday, 28 September 2016

Event bubbling and capturing in JavaScript
In the HTML DOM API event bubbling and capturing are two ways to determine event propagation or which element is going to receive handler first for given event. when an event occurs in an child...