JSFiddle - React, Tailwind, and code Playground

by John Grivas

HTML

<div id="section-one" class="section">
    <img id="section-one-img" style="width: 100%;" src="http://176.67.174.179/ukcctvinstallations.co.uk/wp-content/uploads/2014/09/section-one-pointers.jpg" />
    <div id="section-one-headline">
    <h1 class="main-headline"><span class="site-colour border-box">Your local CCTV Company</span> <br /><p class="headline-desc">with over 80 installation teams NATIONWIDE</span></h1>
    </div>
</div>

JavaScript

jQuery(document).ready(function() {
    if (jQuery(window).width() < 880) {
    jQuery('#section-one-img').attr("src", 'http://176.67.174.179/ukcctvinstallations.co.uk/wp-content/uploads/2014/09/section-one-880px.jpg');
    }
    var imgHeight = jQuery('#section-one-img').height();
    jQuery('#section-one-img').height(imgHeight);
});