Таким образом можно форму захвата скрыть в кнопку и при нажатии отобразить
[php]<div class="hide-content">
[text* your-name placeholder "Your Name *"]
[email* your-email placeholder "Your Email *"]
[text your-subject placeholder "Subject"]
[submit class:btn class:btn-100 "Send"]
</div>
<div class="btn btn-100 show-content hide-on-laptop">Get Appointment</div>
[/php]
[php]
function checkWidth() {
var windowSize = $(window).width();
if (windowSize < 1024) {
$(".hide-content").hide();
$(".show-content").on("click", function (e) {
var $this = $(this).prev(‘.hide-content’);
var $text = $(this);
$this.slideToggle(‘fast’, function () {
});
});
}
else {
$(".hide-content").show();
}
}
// Execute on load
checkWidth();
[/php]





