Where people come together to learn, code, and play. Custom-built HTTP server, site generator, and website from scratch using no external libraries. Goal is to be as minimalistic and fun as possible. http://projectdivar.com
 
 
 
SigPlace/ref/article.js

8 lines
260 B

<script type="text/javascript">
function expand(modify,element) {
var ele = document.getElementById("content_"+element);
ele.classList.remove("content");
ele.classList.add("expandedContent");
modify.remove();
}
</script>