function toggleVisibility(elementID) {
var theDiv = document.getElementById(elementID);
if (theDiv.style.display==’none’)
theDiv.style.display = ”;
else
theDiv.style.display = ‘none’;
}
Hello, World!
Toggle My Div
fonte: www.sastgroup.com





