// // scroll top // $(document).ready(function() { // //Check to see if the window is top if not then display button // $(window).scroll(function() { // if ($(this).scrollTop() > 250) { // $('.form-button').fadeIn(); // } else { // $('.form-button').fadeOut(); // } // }); // });