Question
Edit CSS Styles with JavaScript
Hello,
I tried to cange the CSS Style with JavaScipt code but it does not work. What is wrong?
$scope.ShowClass = function() {
document.getElementById('classname').style.display = "block";
}
$scope.HideClass = function() {
document.getElementById('classname').style.display = "none";
}
