Edit in JSFiddle

$("button").on('click', function(){
	TweenLite.to($('.box'), 3, {width:100, height:100, backgroundColor:"#00ff00"});
});
<button  type="button">Click!</button>
<br><br>
<div class="box"></div>
.box{width:50px;height:50px;background-color:#000}