So i'm using cloud 9 to make a website. Right now i'm stuck at showing and hiding my form. I have a fixed sidebar with a "Contact" button. Pressing that button should toggle my div #page-wrapper which contains my form as a sort of popup window in the middle of the screen where you stand on the site. The contact form is linked with a php script which is currently not working, but that is another story.
I've tried multiple solutions and now i'm just lost.
https://jsfiddle.net/b6uwb4n3/
a piece of the code
$( "#contactBtn" ).click(function() {
$("#page-wrapper").hide( "slow", function() {
});
});
https://fjord-explorers-raademar.c9users.io/
link to my site
very much work in progress.