I use Javacript to set CSS text-shadow property. Here is my code to set the text-shadow property:
var text = document.getElementById("text");
text.style.textShadow = "1px 1px 0 red";
But, I don't know how to unset it. How do I unset the CSS text-shadow property using Javacript? I tried text.style.textShadow = "0 0 0 0"; but it does not work.