HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers68/ouddorp-duin.nl/wwwroot/js/calcHeights.js
/**
 * Created by driesjanssen on 7/4/17.
 */
/*==========================================================================
Home
 ========================================================================== */

/**
 * Calculate block on side of current block
 *
 * 1. Function calculates the height of cta product block and returns it
 * 2. Run function when resizing the window
 *
 */
function calcProductCtaHeight (){ /* 1 */
    return $('.product-cta').outerHeight();
}

$('.workshop-cta').css('height', calcProductCtaHeight());

$(window).on('resize', function(){ /* 2 */

    $('.workshop-cta').css('height', calcProductCtaHeight());

});