mikejmoran of Speak Creative
3/19/2019 - 7:45 PM

jquery-fakecrop.html

<!-- Quick Start -->

<script src="/path/to/jquery-library.js"></script>
<script src="/path/to/jquery.fakecrop.js"></script>
<script>
    $(document).ready(function () {
        // for a filled square thumbnail
        $('img').fakecrop();
        // for a fixed width/height
        $('img').fakecrop({fill: false});
    });
</script>