Found 2417 Articles for HTML

HTML DOM addEventListener() Method

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

241 Views

The HTML DOM addEventListener() method is used to attach an event handler to the specified element.Following is the syntax −element.addEventListener(event, function, capture)Above, the parameters include −event: The name of the event. Required.function: The function to run when the event occurs. Required.capture: Whether the event should be executed in the capturing phase. This check and displays a boolean value; true or false.Let us now see an example to implement the DOM addEventListener() method −Example Live Demo Demo Heading Click var x = document.getElementById("btn"); x.addEventListener("mouseover", one); x.addEventListener("click", two); ... Read More

HTML
autocomplete Attribute

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

96 Views

The autocomplete attribute of the element allows you to set whether the autocomplete for the form should be on or off. The web browser automatically fills the values if the autocomplete is on. This only happens if the user already entered values before.Following is the syntax −Above, on | off values are to be set for autocomplete to appear or not. Set on if you want the browser to complete the entries based on previously entered values, whereas off doesn’t allow to complete the entries.Let us now see an example to implement the autocomplete attribute of the element ... Read More

HTML DOM activeElement Property

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

124 Views

The HTML DOM activeElement property is a read-only property to return the currently focused element in the document.Following is the syntax −document.activeElementLet us now see an example to implement the DOM activeElement property −Example Live Demo Heading Two Click in the element to get the active element. function display() { var a = document.activeElement.tagName; document.getElementById("myid").innerHTML = a; } OutputNow, click the element to display the same currently active element −

HTML DOM accessKey Property

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

100 Views

The HTML DOM accessKey property is used to set the accessKey attribute of an element. However, the accesskey attribute in HTML is used to set a shortcut key to activate or focus on an element.Following is the syntax to set the accessKey property −HTMLElementObject.accessKey = charAbove, char is the shortcut key.Following is the syntax to return the accessKey property −HTMLElementObject.accessKeyOn Windows, set the access key for different browsers −Web BrowserWindows OSSafari[Alt] + accesskeyChrome[Alt] + accesskeyFirefoxAlt] [Shift] + accesskeyLet us now see an example to implement the accesskey property on Chrome web browser on Windows −Example Live Demo Google Get ... Read More

HTML canvas shadowColor Property

Arjun Thakur
Updated on 12-Jun-2020 08:00:20

95 Views

The shadowColor property of the HTML canvas is used to set the color for shadow. The default value is #000000.Following is the syntax −ctx.shadowColor=color;Above, set the color for shadow.Let us now see an example to implement the shadowColor property of canvas −Example Live Demo    var c = document.getElementById("newCanvas");    var ctx = c.getContext("2d");    ctx.shadowBlur = 20;    ctx.shadowColor = "gray";    ctx.fillStyle = "blue";    ctx.fillRect(40, 40, 200, 250); Output

HTML

Ankith Reddy
Updated on 29-Jun-2020 09:37:40

354 Views

The datetime attribute of the element is used to display the machine-readable date time.Following is the syntax −Above, the attribute datetime displays the datetime −YYYY - yearMM - monthDD - day of the monthhh - hourmm - minutesss - secondsTZD - Time Zone DesignatorYou can also set PTDHMS −P - prefix for "Period"D - prefix for "Days"H - prefix for "Hours"M - prefix for "Minutes"S - prefix for "Seconds"Let us now see an example to implement the datetime attribute of the element −Example Live Demo    Exam Results    Result would be announced on 6th June.    New ... Read More

HTML DOM Object Width Property

George John
Updated on 29-Jun-2020 09:26:38

86 Views

The HTML DOM Object Width property is used to set or return the width of an object. This width is set in pixels. Following is the syntax to set the width of an object −objObject.widthFollowing is the syntax to return the width of an object −objObject.width = pixelsAbove, pixels is the value set for the width of object.Let us now see an example to implement the DOM object width property −Example Live Demo              Click to update the width.    Update Width               function display() {          document.getElementById("newObj").width = "550";       }     OutputNow, click the “Update Width” button to update the width −

HTML defaultPrevented Event Property

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

136 Views

The defaultPrevented event property in HTML is used to check whether the preventDefault() method was called or not. It returns a boolean value i.e. true if the preventDefault() method was called, else false.Following is the syntax −event.defaultPreventedLet us now see an example to implement the defaultPrevented event property in HTML −Example Live Demo Demo Heading Demo (click me)    document.getElementById("myid").addEventListener("click", function(event){       event.preventDefault()       alert("Was preventDefault() called: " + event.defaultPrevented);    }); OutputClick on the link and the following would get displayed in the alert box −

HTML DOM Object Height Property

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

75 Views

The HTML DOM Object Height property is used to set or return the height of an object. This height is set in pixels.Following is the syntax to set the height of an object: objObject.heightFollowing is the syntax to return the height of an object −objObject.height = pixelsAbove, pixels is the value set for the height of object.Let us now see an example to implement the DOM object height property −Example Live Demo Click to update the height. Update Height    function display() {       document.getElementById("newObj").height = "350";    } OutputNow, click the “Update Height” button to change the height −

HTML currentTarget Event Property

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

106 Views

The currentTarget event property in HTML is used to get the element whose event listeners triggered the event.Following is the syntax −event.currentTargetLet us now see an example to implement the currentTarget event property −Example Live Demo Get the element Click on this line to generate an alert box displaying the element whose eventlistener triggered the event.    function myFunction(event) {       alert("Element = "+event.currentTarget.nodeName);    } OutputNow double click on the line as shown in the above screenshot to generate an alert box that would display the element whose event listeners triggered the event −

Advertisements