Manisha Patil has Published 46 Articles

How to create editable div using JavaScript?

Manisha Patil

Manisha Patil

Updated on 09-Dec-2022 12:25:26

1K+ Views

You will learn in this post how to use HTML, CSS, and JavaScript to develop an editable div. Whenever you click on an editable div, your browser will automatically create an editable text area where you can make changes to or add new text. The text you've edited will appear ... Read More

How to change the color of error message in jquery validation in JavaScript?

Manisha Patil

Manisha Patil

Updated on 09-Dec-2022 12:18:18

5K+ Views

Let's learn how to modify the colour of the error message in JavaScript while using jQuery form validation in this tutorial. Form validation is the process of verifying the pertinent data that the user has submitted in the input field. Here, we'll demonstrate how to use jQuery to validate a ... Read More

How do I shift from jQuery to core JavaScript?

Manisha Patil

Manisha Patil

Updated on 09-Dec-2022 12:12:21

109 Views

An object-oriented programming language called JavaScript was created to make developing websites more appealing and simple. The majority of the time, JavaScript is used to build dynamic, responsive elements for websites, improving customer experience. The most widely used lightweight, compiled, and interpreted programming language is JavaScript. It is additionally known ... Read More

How can JavaScript code be hidden from old browsers that do not support JavaScript?

Manisha Patil

Manisha Patil

Updated on 09-Dec-2022 12:07:20

454 Views

The JavaScript script tag is occasionally not understood by older browsers. If not, they will simply disregard it and display your script as though it were a section of the (X)HTML document's body. It's a smart option to use comments to hide scripts from outdated browsers to prevent it from ... Read More

Explain Asynchronous vs Deferred JavaScript

Manisha Patil

Manisha Patil

Updated on 09-Dec-2022 12:03:34

253 Views

In most cases, whenever we use a script tag to load any JavaScript code, the browser pauses HTML processing when it comes across the script tag and begins downloading the JavaScript file first. Until the browser has finished downloading and running the script, the HTML elements script tag will not ... Read More

Difference between document load and DOMContentLoaded events in JavaScript

Manisha Patil

Manisha Patil

Updated on 09-Dec-2022 11:56:11

2K+ Views

To verify whether a webpage has fully loaded, use the DOMContentLoaded and load events. However, there are some elements that influence people's choice for one over the other. Let's have a look at both of them and see how they function. The basic HTML page is loaded and its parsing ... Read More

Design Smiley Face Eyes that follow Mouse Cursor using CSS and JS

Manisha Patil

Manisha Patil

Updated on 09-Dec-2022 11:47:30

767 Views

A face that is animated using JavaScript, HTML, and CSS. The face will move in the same direction as the cursor. This is one of the basic CSS and JavaScript effects. It is among the best examples for learning the idea of pseudo-elements for a newcomer. When it comes to ... Read More

Build a Site Bookmark App with JavaScript by using Local Storage

Manisha Patil

Manisha Patil

Updated on 09-Dec-2022 11:41:27

1K+ Views

In this tutorial, we'll use JavaScript, CSS, and HTML to build a Site Bookmark app. Through the use of our browser's local storage, we will be able to store links to our favourite websites without having to use any databases. We can store data client-side thanks to Local Storage, also ... Read More

Why is using “for…in” loop in JavaScript array iteration a bad idea?

Manisha Patil

Manisha Patil

Updated on 24-Aug-2022 12:51:25

185 Views

The ability to execute a collection of instructions or functions repeatedly while a certain condition holds true is known as looping in programming languages. The for-in statement is used to iterate through the properties of an object. This sentence will move up the prototype chain and display all inherited properties, ... Read More

What is JavaScript’s highest integer value that a Number can go to without losing precision?

Manisha Patil

Manisha Patil

Updated on 24-Aug-2022 10:08:44

19K+ Views

The value of the MAX SAFE INTEGER constant is 9007199254740991 (9, 007, 199, 254, 740, 991 or nine quadrillion). JavaScript only properly represents integers between -(253 - 1) and 253 - 1, which is the rationale for that number. JavaScript employs double-precision floating-point format numbers as specified in IEEE 754. ... Read More

Advertisements