toggle show/hide txt file with button code example
Example 1: javascript hide div
<script>
document.getElementById("id").style.display = "none";
document.getElementById("id").style.display = "block";
document.getElementById("id").style.display = "";
</script>
<html>
<div id="id" style="display:none">
<div id="id" style="display:block">
</html>
<script>
$("#id").hide();
$("#id").show();
</script>
Example 2: how to toggle in text add
$(".email-slide").click(function(){
$("#panel").slideToggle("slow");
$(this)
.text("Close")
.toggleClass("active");
});