/ Published in: JavaScript
Expand |
Embed | Plain Text
function changeDiv(wdiv) { thediv = document.getElementById(wdiv); if(thediv.className == 'folderclosed'){ thediv.className = 'folderopen'; } else if (thediv.className == 'folderopen'){ thediv.className = 'folderclosed'; } }
You need to login to post a comment.
