Found 2417 Articles for HTML

HTML DOM Input Number name Property

Sharon Christine
Updated on 01-Jul-2020 08:06:10

55 Views

The HTML DOM input number name property returns and modify the value of the name attribute of the input field of type=”number” in a HTML document.SyntaxFollowing is the syntax −1. Returning nameobject.name2. Modifying nameobject.name = “text”ExampleLet us see an example of HTML DOM input number name property − Live Demo    html{       height:100%;    }    body{       text-align:center;       color:#fff;       background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat;       height:100%;    }    p{       font-weight:700;       font-size:1.2rem;    }   ... Read More

HTML DOM Input Number disabled Property

Sharon Christine
Updated on 01-Jul-2020 08:10:33

112 Views

The HTML DOM input number disabled property returns and modify whether the input field of type=”number” in an HTML document is disabled or not.SyntaxFollowing is the syntax −Returning disabledobject.disabledModifying disabledobject.disabled = true | falseExampleLet us see an example of HTML DOM input number disabled property − Live Demo    html{       height:100%;    }    body{       text-align:center;       color:#fff;       background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat;       background:#B39CD0;       height:100%;    }    p{       font-weight:700;       font-size:1.2rem;   ... Read More

HTML DOM Input Number autofocus Property

Sharon Christine
Updated on 01-Jul-2020 08:55:59

75 Views

The HTML DOM input number autofocus property returns and modify whether the input number field should get focused or not when page load.SyntaxFollowing is the syntax −Returning autofocusobject.autofocus2. Modifying autofocusobject.autofocus = true | falseExampleLet us see an example of HTML DOM input number autofocus property − Live Demo HTML DOM autofocus property    body{       text-align:center;       background-color:#1b203a;       color:#ff8741;    }    p{       font-size:1.2rem;    }    input{       border:none;       background-color:#ffffff4a;       height:1.2rem;       padding:8px;       color:#fff; ... Read More

HTML DOM Input Number form Property

Sharon Christine
Updated on 30-Jul-2019 22:30:26

60 Views

The HTML DOM input number form property returns the reference of the form that contains the number input field in the HTML document.SyntaxFollowing is the syntax −object.formExampleLet us see an example of HTML DOM input number form property − Live Demo body{ text-align:center; background-color:#1b203a; color:#fff; } form{ margin:2.5rem auto; border:1px solid #fff; padding:2rem; ... Read More

HTML DOM Input Number stepDown() Method

karthikeya Boyini
Updated on 30-Jul-2019 22:30:26

55 Views

The HTML DOM input number stepDown() method decrements the value of input number field by a specified value.SyntaxFollowing is the syntax −object.stepDown(number)Here, if number parameter is omitted then it decrements the value by 1.ExampleLet us see an example of input number stepDown() method − Live Demo HTML DOM stepUp()/stepDown() Demo body{ text-align:center; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat; height:100vh; color:#fff; } p{ ... Read More

HTML DOM Input Number stepUp() Method

karthikeya Boyini
Updated on 30-Jul-2019 22:30:26

77 Views

The DOM input number stepUp() method increments the value of input number field by a specified value.SyntaxFollowing is the syntax −object.stepUp(number)Here, if number parameter is omitted then it increments the value by 1.ExampleLet us see an example of HTML DOM input number stepUp() method − Live Demo HTML DOM stepUp()/stepDown() Demo    body{       text-align:center;       background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%)       center/cover no-repeat;       height:100vh;       color:#fff;    }    p{       font-size:1.5rem;    }    input{       width:40%; ... Read More

HTML DOM Input Number Object

karthikeya Boyini
Updated on 30-Jul-2019 22:30:26

115 Views

The HTML DOM input number Object represent the

HTML DOM Input Month form Property

Sharon Christine
Updated on 30-Jul-2019 22:30:26

73 Views

The HTML DOM input month form property returns the reference of the form that contains the month input field in the HTML document.SyntaxFollowing is the syntax −object.formExampleLet us see an example of HTML DOM input month form property − Live Demo    body{       text-align:center;       background-color:#363946;       color:#fff;    }    form{       margin:2.5rem auto;    }    button{       background-color:#db133a;       border:none;       cursor:pointer;       padding:8px 16px;       color:#fff;       border-radius:5px;     ... Read More

HTML DOM Input Month stepUp() Method

Sharon Christine
Updated on 30-Jul-2019 22:30:26

43 Views

The HTML DOM input month stepUp() method steps up (increment) the value of input month field by a specified value.SyntaxFollowing is the syntax −object.stepUp(number)Here, if number parameter is omitted then it increments the value by 1.ExampleLet us see an example of input month stepUp() method − Live Demo HTML DOM stepUp()/stepDown() Demo body{ text-align:center; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat; height:100vh; color:#fff; ... Read More

HTML DOM Input Month stepDown() Method

Sharon Christine
Updated on 30-Jul-2019 22:30:26

40 Views

The HTML DOM input month stepDown() method steps down (decrement) the value of input month field by a specified value.SyntaxFollowing is the syntax −object.stepDown(number)Here, if number parameter is omitted then it decrements the value by 1.ExampleLet us see an example of input month stepDown() method − Live Demo HTML DOM stepUp()/stepDown() Demo body{ text-align:center; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat; height:100vh; color:#fff; ... Read More

Advertisements