resizeable

by Hoang_Van_Trinh

HTML

<div id="resize" class="demodiv">Resize me!</div>

CSS

.ui-resizable-helper {
    border: 1px dotted #999;
}
#resize {
    background-color: red;
}
.demodiv {
    height: 150px;
    width: 150px;
    float: left;
    margin-left: 5px;
}

JavaScript

$('#resize').resizable({
    helper: "ui-resizable-helper",
    grid: [10, 10]
});