How to change the text in Javascript?

In this article, we learn how to change the text value in javascript. HTML Javascript The Element property innerHTML gets or sets the HTML or XML markup contained within the element. BrijBrijpal Sharma is a web developer with a passion for writing tech tutorials. Learn JavaScript and other web development technology. www.codermen.com/

How to Check If a Number is Odd or Even in Javascript?

In this article, we are going to check if a number is odd or even. We have many methods to do this task but we use one of the easiest methods. HTML Javascript Here is using the modulus % operator to determine if a number is odd or even in JavaScript. I make numeric character … Read more

How to Change Text Color Using Javascript?

In this article, we are going to change text color using the javascript function. After the button is clicked, the JavaScript function is called and sets the color to the text. HTML Here I simply give an id to the H1 tag and create an HTML button with onclick attribute. Javascript This is a simple … Read more

How to calculate two textbox values in javascript?

In this blog post, we learn how to calculate two textbox values in javascript. Often two or more input values need to be calculated in projects. To achieve this task we use javascript function getElementById() . It returns an Element object representing the element whose id property matches the specified string. HTML Javascript Here is simple javascript code. Javascript … Read more

How to Display Data in Textarea Using Javascript?

This blog post will show how to display data in a textbox or textarea using javascript. We have several methods to Change the contents of a text area: HTML Javascript The getElementById() returns the element with the ID attribute with the specified value. The value property sets or returns the contents of a text area. … Read more

How to compare two strings in javascript if condition?

There are many methods in Javascript by which we can compare two strings. Such as Abstract Equality Comparison (==) and Strict Equality Comparison (===). The strict equality operator (===) behaves identically to the abstract equality operator (==) except no type conversion is done, and the types must be the same to be considered equal. so … Read more

How to check if the shift key is pressed in Javascript?

In this blog, we will know how to check if the shift key is pressed in Javascript? We have many methods to check but we know the easiest methods. Method 1: Using shiftKey The KeyboardEvent.shiftKey read-only property is a boolean value that indicates if the shift key was pressed ( true ) or not ( false ) Html … Read more

Don’t Allow Special Characters in Textbox Javascript

Whenever we create a contact form or user form. We want that no user should input a special character, because there may be a hacking script. Which can destroy or hack our database or project file. In this blog post, we will learn how don’t allow special characters in textbox javascript. First, make a textarea … Read more

How to Add Two Variables in Javascript?

In this blog, we will learn how to add two variables in javascript. Generally, whenever we try to add two numbers in javascript using “+”, we get the result 2+2 = 22. while we expect 4. So first we have to tell javascript that we want to add integer types value. For this, we can … Read more