JSFiddle - React, Tailwind, and code Playground

HTML

<button id='resize'>Resize elements</button>
<div id="box">apsdpasdpas dasd aspdp asda </div>
 <img id='cateye' src='http://www.google.com.br/images/srpr/logo3w.png'/>

CSS

div#box {
    width:200px;
    height:100px;
    background-color:lime;
    border:1px solid black;
    margin-left:200px;
}

JavaScript

$(function(){ 
    $('button#resize').click(function() {
 
        $('div#box').resizable({ aspectRatio:true});
        $('img#cateye').resizable({ aspectRatio:true});
    });
        
   
        

                                              
 });