AmitDiwan has Published 10740 Articles

HTML DOM Location reload() method

AmitDiwan

AmitDiwan

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

338 Views

The HTML DOM Location reload() method is used for re – rendering the current document. It provides the same functionality as the reload button in the browser.SyntaxFollowing is the syntax −location.reload(forceGetParameter)ParametersHere, “forceGetParameter” can be the following −forceGetParameterDetailstrueIt defines that current document is reloaded from server.falseIt defines that current document is ... Read More

HTML DOM Location replace() method

AmitDiwan

AmitDiwan

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

228 Views

The HTML DOM Location replace() method is used for rendering a new document replacing the current document. It also removes the current document URL from document history disabling navigation to old document using ‘back’ button.SyntaxFollowing is the syntax −location.replace(URLString)ExampleLet us see an example for Location replace() property − Live Demo ... Read More

HTML DOM Input Email type Property

AmitDiwan

AmitDiwan

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

138 Views

The HTML DOM Input Email type property returns/sets type of Input Email.SyntaxFollowing is the syntax −Returning string valueinputEmailObject.typeSetting type to string valueinputEmailObject.type = stringValueString ValuesHere, “stringValue” can be the following −stringValueDetailsemailIt defines that input type is emaildatetime-localIt defines that input type is datetime-localradioIt defines that input type is radiotelIt defines ... Read More

HTML DOM Input Email value Property

AmitDiwan

AmitDiwan

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

166 Views

The HTML DOM Input Email value property returns a string, which is the value attribute of input Email. User can also set it to a new string.SyntaxFollowing is the syntax −Returning string valueinputEmailObject.valueSetting value attribute to a string valueinputEmailObject.value = ‘String’ExampleLet us see an example of Input Email value property − Live ... Read More

HTML DOM Input FileUpload accept Property

AmitDiwan

AmitDiwan

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

129 Views

The HTML DOM Input FileUpload accept property returns a string, which is the value of the accept attribute of FileUpload. User can also set it to a new value.SyntaxFollowing is the syntax −Returning string valueinputFileUploadObject.acceptSetting value attribute to a string valueinputFileUploadObject.accept = valueExampleLet us see an example of Input FileUpload ... Read More

HTML DOM Input FileUpload autofocus Property

AmitDiwan

AmitDiwan

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

136 Views

The HTML DOM Input FileUpload autofocus property sets/returns whether Input FileUpload is focused upon initial page load.SyntaxFollowing is the syntax −Returning boolean value - true/falseinputFileUploadObject.autofocusSetting autofocus to booleanValueinputFileUploadObject.autofocus = booleanValueBoolean ValuesHere, “booleanValue” can be the following −booleanValueDetailstrueIt defines that input will be autofocused on page load.falseIt is the default value ... Read More

HTML DOM Input Text size Property

AmitDiwan

AmitDiwan

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

212 Views

The HTML DOM Input Text size property returns/sets the size property for input text. If not defined this property returns ‘20’.SyntaxFollowing is the syntax −Returning size attributeinputTextObject.sizeSet size property to a numberinputTextObject.size = numberExampleLet us see an example of Input Text size property − Live Demo Input Text size ... Read More

HTML DOM Input Text type Property

AmitDiwan

AmitDiwan

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

258 Views

The HTML DOM Input Text type property returns/sets type of Input Text.SyntaxFollowing is the syntax −Returning string valueinputTextObject.typeSetting type to string valueinputTextObject.type = stringValueString ValuesHere, “stringValue” can be the following −stringValueDetailsemailIt defines that input type is emailtextIt defines that input type is textradioIt defines that input type is radiotelIt defines ... Read More

HTML DOM Input Text value Property

AmitDiwan

AmitDiwan

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

191 Views

The HTML DOM Input Text value property returns a string, which is the value of the value attribute of input Text. User can also set it to a new string.SyntaxFollowing is the syntax −Returning string valueinputTextObject.valueSetting value attribute to a string valueinputTextObject.value = ‘String’ExampleLet us see an example of Input ... Read More

HTML DOM Input Time autofocus Property

AmitDiwan

AmitDiwan

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

120 Views

The HTML DOM Input Time autofocus property sets/returns whether Input Time is focused upon initial page load.SyntaxFollowing is the syntax −Returning boolean value - true/falseinputTimeObject.autofocusSetting autofocus to booleanValueinputTimeObject.autofocus = booleanValueBoolean ValuesHere, “booleanValue” can be the following:booleanValueDetailstrueIt defines that input will be autofocused on initial page load.falseIt is the default value ... Read More

Advertisements