AmitDiwan has Published 10744 Articles

HTML DOM Clipboard event

AmitDiwan

AmitDiwan

Updated on 07-Aug-2019 13:38:41

425 Views

The HTML DOM Clipboard event is used to provide information regarding modification of the clipboard. The events can be cut, copy and paste. The Clipboard event can be used to make your site more accessible i.e. giving user information on how the clipboard is being modified.PropertiesFollowing is the property for ... Read More

HTML DOM Caption Object

AmitDiwan

AmitDiwan

Updated on 07-Aug-2019 12:23:10

162 Views

The HTML DOM Caption object is associated with the HTML element. The element is used for setting caption (title) of the table and should be the first child of the table. You can access caption element using the caption object.PropertiesNote: The below property are not supported in the ... Read More

HTML DOM cancelable Event Property

AmitDiwan

AmitDiwan

Updated on 07-Aug-2019 12:11:07

172 Views

The HTML DOM cancelable event property is associated with the HTML events as JavaScript can react to these events. The cancelable event property returns a Boolean true or false indicating whether the event can be cancelled or not.SyntaxFollowing is the syntax for cancelable event property −event.cancelableExampleLet us see an example ... Read More

HTML DOM Button type Property

AmitDiwan

AmitDiwan

Updated on 07-Aug-2019 12:02:28

292 Views

The HTML DOM Button type property is associated with the HTML element. The button element by default has type=”submit” i.e clicking on any button on the form will submit the form. The button type property sets or returns the type of button.SyntaxFollowing is the syntax for −Setting the button ... Read More

HTML DOM Button object

AmitDiwan

AmitDiwan

Updated on 07-Aug-2019 11:57:48

755 Views

The HTML DOM Button object is associated with the element.PropertiesFollowing are the properties for the HTML DOM button object −PropertyDescriptionautofocusTo set or return whether a button is automatically focused or not when the page loads.disabledTo set or return whether a given button is disabled or not.formTo return the reference ... Read More

HTML DOM Button name Property

AmitDiwan

AmitDiwan

Updated on 07-Aug-2019 11:52:31

282 Views

The HTML DOM Button name property is associated with name attribute of the element. The name property is used to set or return the value of the name attribute of the button. The name attribute is used in forms to select an element using JavaScript.SyntaxFollowing is the syntax for ... Read More

HTML DOM Button disabled Property

AmitDiwan

AmitDiwan

Updated on 07-Aug-2019 11:47:41

1K+ Views

The HTML DOM Button disabled property is associated with disabled attribute of the element .The button disabled property is used to set or return whether a given button is disabled or not. It is used to disable the button so that the user can no longer interact with the ... Read More

HTML DOM blockquote cite Property

AmitDiwan

AmitDiwan

Updated on 06-Aug-2019 14:39:29

159 Views

The HTML DOM blockquote cite property is associated with the HTML element. This property is used to set or return the cite attribute of the quote. The cite property is useful for screen readers and not so much for normal user as it doesn’t have any visual effect on ... Read More

HTML DOM Anchor text Property

AmitDiwan

AmitDiwan

Updated on 06-Aug-2019 14:30:04

819 Views

The HTML DOM text property associated with the anchor tag () specifies the text part of an anchor tag.For example − Google. Here the text part is Google. Using the text property we can get or change the value of anchor text.SyntaxFollowing is the syntax for −Returning the text property ... Read More

HTML DOM Base object

AmitDiwan

AmitDiwan

Updated on 06-Aug-2019 14:24:15

174 Views

The HTML DOM Base object is associated with the HTML element. The element is used to specify the base url for all other URLs in the HTML document. There can at most one element in an HTML document. The Base object is used to set or get ... Read More

Advertisements