Exploring new territories in Javascript and seeking guidance. Found some code on jquery's documentation http://api.jquery.com/show/
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<button>Click Here</button>
<p style="display: none">Hello World!</p>
<script>
$( "button" ).click(function() {
$( "p" ).show( "slow" );
});
</script>
</body>
</html>
Inquiring about the concept of changing "p" to a class to reveal an entire content area upon click, similar to www.shopify.com structure under the header.
Pondering something like this:
<div class="first-reveal">
<p style="display:none;">Lorem Ipsum Dolor Sit Amet</p>
</div>
<script>
$( "button" ).click(function() {
$( ".first-reveal" ).show( "fast" );
});
</script>