I have a button on my page
 <button id="show1" class="morelinkblack">Find Out More</button>
When clicked it runs this code
 $("#show1").click(function(){
   $(".hidden-div1").slideToggle("slow");
 });
Is there a way of changing the text to say "Close" instead of "find out more" while the div is visible?
 
     
     
    