hackedteam/test-av

View on GitHub
data/html/js/functions.js

Summary

Maintainability
A
0 mins
Test Coverage
function showHide(id) {
    var e = document.getElementById(id);
    
    if(e.style.display == "none")
        e.style.display = "block";
    else
        e.style.display = "none";
}