Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
September 24, 2021 06:02 pm GMT

How to remove CSS Property using javascript?

<!DOCTYPE html><html><head><style>#myDIV {  background-color: coral;  border: 1px solid;  padding: 50px;  color: white;}</style></head><body><div id="myDIV">This div element has an onmousemove event handler that displays a random number every time you move your mouse inside this orange field.  <p>Click the button to change the color of text.</p>  <button onclick="removeHandler()" id="myBtn">Try it</button></div><h1 id="demo">Hello everyone</h1><script>document.getElementById("myDIV").addEventListener("mousemove", myFunction);function myFunction() {  document.getElementById("demo").style.color = "green";}function removeHandler() {  document.getElementById("demo").style.removeProperty('color');}</script></body></html>

OUTPUT:

1.) Without Click Try It button text is green:

Screenshot (325)

2.) After Click the button remove property call and removes the previous css property of text:

Screenshot (326)

To learn from each other keep sharing and learning!
follow me on Twitter also I post my daily learning and work on Twitter.
https://twitter.com/tk22O9


Original Link: https://dev.to/tanwi2209/how-to-remove-css-property-using-javascript-2pjk

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To