jQuery UI #8171

http://bugs.jqueryui.com/ticket/8171

by Adrien Antoine

HTML

<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.3/css/base/jquery.ui.base.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<p><a target="_blank" href="http://bugs.jqueryui.com/ticket/8171">jQuery UI #8171</a> - <code>alsoResize</code> elements do not respect the <code>grid</code> option.</p>

<div id="resizable"></div>
<div class="alsoResize"></div>
<div class="alsoResize"></div>

CSS

body { padding: 20px; }
p { line-height: 1.5; margin-bottom: 20px; }

#resizable, .alsoResize {
    border: 1px solid black;
    height: 100px;
    width: 100px;
}

JavaScript

$('#resizable').resizable({
    alsoResize: '.alsoResize',
    grid: 50
});