0
How to create cover page for a website(that disappears by clicking an open button) using jquery?
I have developed a web resume but have no idea how to add a cover page to my website. Can someone one help me to achieve this? Please provide a sample code with html, css and jquery/js.
2 Answers
+ 1
<div id="cover">
<!-- all your content -->
<button id="btn">hide</button>
</div>
Jquery:
$("#btn").click(function() {
$("#cover").hide();
})