JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container">
    <a href="#" id="resizeit">Hover here to resize Image</a>
    <br><br><br>
    <img src="http://img714.imageshack.us/img714/9505/priestc.jpg" id="resizeimg"/>
</div>

JavaScript

$('#resizeit').hover(function(){
    $('img#resizeimg').css({
        'width':'100px',
        'height':'150px'
    });
},function(){
    $('img#resizeimg').css({
        'width':'auto',
        'height':'auto'
    });
});

$('#resizeimg').hover(
	function(e) {
    $('#resizeit').trigger(e.type);
});