Javascript Articles - Page 561 of 671

How to set an element's display type with JavaScript?

Samual Sam
Updated on 23-Jun-2020 12:20:01

2K+ Views

To set an element’s display type, use the display property. If you want to hide the element, then use none.ExampleYou can try to run the following code to set an element's display type with JavaScript −Live Demo                    #myID {             width: 250px;             height: 200px;             background-color: green;          }                     Set display as none                Heading Level 1 for Demo          This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text.                      function display() {             document.getElementById("myID").style.display = "none";          }          

Set how much the item will grow relative to the rest of JavaScript.

Priya Pallavi
Updated on 23-Jun-2020 12:20:37

99 Views

Use the flexGrow property to set how much the item will grow relative to the rest with JavaScript.ExampleYou can try to run the following code to learn how to work with flexGrow property −                    #box {             border: 1px solid #000000;             width: 250px;             height: 150px;             display: flex;             flex-flow: row wrap;          }          #box div {             flex-grow: 0;             flex-shrink: 1;             flex-basis: 20px;          }                              DIV1          DIV2          DIV3             Using flexGrow property       Set                function display() {             document.getElementById("myID").style.flexGrow = "2";          }          

How to make flexible items display in columns with JavaScript?

Smita Kapse
Updated on 23-Jun-2020 12:21:44

214 Views

Use the flexFlow property to set the flexible items to be visible in columns.ExampleYou can try to run the following code to make flexible items display in columns with JavaScript −                    #box {             border: 1px solid #000000;             width: 100px;             height: 150px;             display: flex;             flex-flow: row wrap;          }          #box div {             height: 40px;             width: 40px;          }                                  DIV1          DIV2          DIV3             Using flexDirection property       Set                function display() {             document.getElementById("box").style.flexFlow = "column nowrap";          }          

How to set the type of cursor to display for the mouse pointer with JavaScript?

Shubham Vora
Updated on 12-Oct-2022 11:04:31

2K+ Views

In this tutorial, we will learn to set the type of cursor for the mouse pointer with JavaScript. To set the type of cursor, use the cursor property in JavaScript. It allows you to change the cursor on the button click. We can even change the type of cursor by using JavaScript. Different types of cursors have different meanings. There are many styles of cursors that can use on our webpage. Let us look at how to set the type of cursor to display for the mouse pointer with JavaScript. Using the Style cursor Property The cursor property is used ... Read More

How to set the direction of the flexible items with JavaScript?

Shubham Vora
Updated on 09-Nov-2022 11:36:02

1K+ Views

In this tutorial, we will learn how to set the direction of the flexible items with JavaScript. The direction of the flexible items can be set using the flex-direction property of CSS. It defines how the flexible items will be placed in the flex container. Its default value is set to ‘row’, but it can have other values like ‘column’, ‘row-reverse’ etc. To set the direction of the flexible items with JavaScript, we have multiple ways, and in this tutorial, we will discuss two of them − Using the style.flexDirection Property Using the style.setProperty Method Using the style.flexDirection ... Read More

How to increment one or more counters with JavaScript?

Shubham Vora
Updated on 12-Oct-2022 09:22:28

14K+ Views

In this tutorial, we will learn how to increment one or more counters with JavaScript. In JavaScript, we can increment one or more counters in different approaches, and in this tutorial, we will see some of the approaches for doing this − Using loop iteration Using events Using setInterval() method Increment Counters using Loop Iteration Counters can be easily incremented by using loop iterations. In JavaScript, we have multiple loops like the "for" loop and the "while" loop. We can use any one of them to increment a counter value. Firstly, we need to set a limit for ... Read More

How to set the initial length of a flexible item with JavaScript?

Shubham Vora
Updated on 15-Nov-2022 08:00:41

390 Views

In this tutorial, we will learn how to set the initial length of a flexible item with JavaScript. Flexbox is a one-dimensional layout model that distributes space among items in an interface and provides flexible item alignment properties. It creates flexible items. Use the flexBasis property in JavaScript to set the initial length of a flexible item. In this tutorial, we will see two approaches to setting the initial length of a flexible item − Using the property style.flexBasis Using the method style.setProperty Using the style.flexBasis Property The style flexBasis is a flexbox property that determines the initial ... Read More

How to create or reset counters with JavaScript?

karthikeya Boyini
Updated on 23-Jun-2020 12:25:14

888 Views

To create counters, use the counterReset property in JavaScript. You can try to run the following code to create or reset one or more counters with JavaScript −ExampleLive Demo                    h2:before {             counter-increment: section;             content: counter(section) " Quiz ";          }                     Quizzes       Change the counterIncrement       Ruby       Java       PHP       Perl       Reset Counter                function display() {             document.body.style.counterReset = "section";          }          

How to set the left margin of an element with JavaScript?

Shubham Vora
Updated on 15-Nov-2022 08:05:12

5K+ Views

In this tutorial, we will learn how to set the left margin of an element with JavaScript. Margin is the space around an element outside its border. The margin of an element can be on all sides, such as: left, right, top, and bottom. Use the marginLeft property in JavaScript to set the left margin. In this tutorial, we will discuss two approaches to setting the left margin − Using the marginLeft property Using the setProperty method Using the marginLeft property to set the left margin of an element The marginLeft property of an element in JavaScript is ... Read More

How to set the length of the item relative to the rest with JavaScript?

Abhinaya
Updated on 23-Jun-2020 12:16:12

129 Views

Use the flex property in JavaScript to set the length of the item relative to the rest. You can try to run the following code to implement flex property with JavaScript −Example                    #box {             border: 1px solid #000000;             width: 300px;             height: 400px;             display: flex;          }                              DIV1          DIV2          DIV3             Set                function display() {             var a = document.getElementById("box");             var b = a.getElementsByTagName("DIV");             var j ;             for (j = 0; j < b.length; j++) {                b[j].style.flex = "1";             }          }          

Advertisements