Files
42_INT_12_webserv/www/rfc2119_files/errata.js.téléchargement
LuckyLaszlo e596d8f093 MIME types map for correct Content-type header
+ append body to string cause encoding problem, so added temp buf in Client.
2022-08-05 04:24:15 +02:00

5 lines
165 B
Plaintext

function hideFunction(nodeId) {
var ul = document.getElementById(nodeId)
ul.className = (ul.className=="nodeOpenClass") ? "nodeCloseClass" : "nodeOpenClass"
}