File: /home/s76vzjg2kvav/public_html/des/js/custom.js
//equalize
function equalHeight(group) {
tallest = 0;
group.each(function() {
thisHeight = jQuery(this).height();
if (thisHeight > tallest) {
tallest = thisHeight;
}
});
group.height(tallest);
}
jQuery(document).ready(function() {
equalHeight(jQuery(".success-block p"));
equalHeight(jQuery(".feature-box.bg-white .feature-box-content p"));
equalHeight(jQuery(".is-box p"));
equalHeight(jQuery(".oc-block p"));
// equalHeight(jQuery(".is-box-1 span"));
equalHeight(jQuery(".story h6"));
//scroll
jQuery("#anc-foo").click(function() {
jQuery('html, body').animate({
scrollTop: jQuery("#anc-footer").offset().top
}, 1000);
});
jQuery("#book-demo").click(function() {
jQuery('html, body').animate({
scrollTop: jQuery("#anc-footer").offset().top
}, 1000);
});
});