Draggable $ Resizable Div Text

by Yusril Maulidan Raji

HTML

<script src="https://code.jquery.com/jquery-1.7.2.min.js"></script>
<script src="https://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.23/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/themes/base/jquery-ui.css">
<div id="text" class="ui-widget-content">
Test Text
</div>

CSS

#text{
  height:50px;
  width:50px;
}

JavaScript

$('#text').css({
	top: 10,
	left: 10,
	position: 'absolute'
}).resizable().draggable();
//var a = $('#text').html();
//$('#text').html("Changed "+a);