Lokesh Badavath has Published 102 Articles

What is JavaScript AES Encryption?

Lokesh Badavath

Lokesh Badavath

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

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

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

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 do I wrap text in a <pre> tag in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 11:56:25

In this article we are going to learn how to wrap a text in tag in HTML. The HTML tag is used to present preformatted block of text. Preformatted text refers to text that has already been formatted and should not be formatted further. The tag ... 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

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 date field in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 11:49:40

In this article, we are going to use input type field with date field in HTML. We use type="date" in the elements to create input fields that let the user enter a date, either with a textbox that validates the input or a special date picker interface. The value ... Read More

How to use input type field with steps in HTML?

Lokesh Badavath

Lokesh Badavath

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

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

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

How to limit an HTML input box so that it only accepts numeric input?

Lokesh Badavath

Lokesh Badavath

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

In this article, we will learn how to limit an HTML input box so that it only accepts numeric inputs. We use the to limit an HTML input box so that it only accepts numeric inputs. By using this, we will get a numeric input field. Syntax Following is ... Read More

How to limit the number of characters allowed in form input text field?

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 11:32:02

In this article, we will learn how to limit the number of characters allowed in form input text field. We use tag to get user input in HTML. To give a limit (or range) to the input field, we use the min and max attributes, which is to specify ... Read More

1 2 3 4 5 ... 11 Next
Advertisements