<div id="more" onclick="swap()">click to read more...</div>
<div  id="wrap">This is a wrapping div which can have a lot of content. It replaces the "click to read more..." text.</div>
#wrap {display:none;}
#more {cursor:pointer;}
function swap() {
document.getElementById("wrap").style.display = 'block';
document.getElementById("more").style.display = 'none';
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.