Latest Articles

Create Element JavaScript

With Javascript, We can easily create different HTML elements and also append them to other elements. Read Also: Remove Element JavaScript Suppose we want to insert a new list element inside <ul> elements using javascript. Here, we create <li> elements using javascript as follows: Explanation: First we create a new <li> element using document.createElement() function. […]

JQuery Remove Element

With jquery, We can easily remove different HTML elements. Before reading this post please refer our JQuery Create Element post if you don’t know how to create an element using JQuery. Above structure is the basic HTML structure that contains the head and body. To use jquery in HTML code, we require jquery google CDN […]

JQuery Create Element

With JQuery, We can easily create different HTML elements and also insert them into components. Above structure is the basic HTML structure that contains the head and body. To use jquery in HTML code, we require jquery google CDN in head or body section. Step 1: So, first, insert the following CDN into head tag. […]

How to Copy File in Python

Python supports copying of source file into the destination file. Here i’ve described few methods to copy file in python. It is easier than other programming languages and easy to understand for the developer. We have to import some libraries and write a few lines of code. File Copy in Python There are 2 Methods […]

How to Force Download File Using PHP

Generally, we can download files directly by creating hyperlinks. But Images, PDFs, and Media files open in a browser rather than downloading. Force Download Files in PHP Sometimes, we need to force download files in the user’s browser for better user experience. However, there is no direct way to download files forcefully. The only way […]