Lokesh Badavath has Published 102 Articles

How to use an image as a link in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 29-Aug-2023 07:02:36

309K+ Views

We can add image as a link and other HTML elements as a link. A link is a connection from one Web page to another web page. We can add page links to a web page. HTML links are hyperlinks. The tag defines a hyperlink and used to link ... Read More

What is JavaScript AES Encryption?

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 14:54:35

11K+ Views

In this article, we are going to learn what is JavaScript AES Encryption. AES is an algorithm developed for the encryption of data. AES uses the same key to encrypt and decrypt data, called the symmetric encryption algorithm. AES encryption is Advanced Encryption Standard (AES) to encrypt the data in ... Read More

Removing an element from the end of the array in Javascript

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 12:06:44

153 Views

In this article, we are going to discuss how to remove an element from the end of the array in JavaScript. An array is a special variable, which can hold more than one value. An array is a collection of items stored at contiguous memory locations. The idea is to ... Read More

Adding an element at the end of the array in Javascript

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 12:05:32

309 Views

In this article, we are going to add an at the end of the array in JavaScript. An array is a special variable, which can hold more than one value. An array is a collection of items stored at contiguous memory locations. The idea is to store multiple items together. ... Read More

How to use input type field with the color picker in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 11:52:08

2K+ Views

In this article, we are going to learn how to use input type field with the color picker in HTML. We use for input fields with color. It will allow us to select a color from color picker. A color picker will be visible when we will click on ... Read More

How to use input type field with steps in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 11:47:48

585 Views

In this article, we are going to use input type field with steps in HTML. We use step attribute to specifies the interval between numbers in an element. For example, if our step = "2", numbers could be -4, -2, 0, 2, 4, etc. The step sets the stepping ... Read More

How to allow multiple file uploads in HTML forms.

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 11:45:24

17K+ Views

In this article, we will learn how to allow multiple files uploads in HTML forms. We use the multiple attributes, to allow multiple file uploads in HTML forms. The multiple attributes work with email and file input types. If you want to allow a user to upload the file to ... Read More

Adding an element at a given position of the array in Javascript

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 11:27:37

400 Views

In this article, we are going to learn how to add an element at a given position of the array in JavaScript. An array is a special variable, which can hold more than one value. An array is a collection of items stored at contiguous memory locations. The idea is ... Read More

Adding an element at the start of the array in Javascript

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 11:09:37

229 Views

In this article, we are going to learn how to add an element at the start of the array in JavaScript. An array is a special variable, which can hold more than one value sequentially. It is a collection of items stored at contiguous memory locations. The idea is to ... Read More

How to get the body's content of an iframe in JavaScript?

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 10:57:03

18K+ Views

We use getIframeContent(frameId), to get the object reference of an iframe in JavaScript. To get the element in an iframe, first we need access the element inside the JavaScript using the document.getElementById() method by passing iframe id as an argument. Using iframetag The tag in HTML specifies ... Read More

Advertisements