Plugins Base Resizable
# jQuery EasyUI Basic Plugin β Resizable
* * jQuery EasyUI Plugins](#)
* * *
Override the default defaults via `$.fn.resizable.defaults`.
## Usage
Create a resizable object via markup.
Create a resizable object via javascript.
$('#rr').resizable({ maxWidth:800, maxHeight:600});
## Properties
| Name | Type | Description | Default Value |
| :--- | :--- | :--- | :--- |
| disabled | boolean | If set to true, resizing is disabled. | false |
| handles | string | Specifies the directions for resizing, 'n' for north, 'e' for east, and so on. | n, e, s, w, ne, se, sw, nw, all |
| minWidth | number | The minimum width when resizing. | 10 |
| minHeight | number | The minimum height when resizing. | 10 |
| maxWidth | number | The maximum width when resizing. | 10000 |
| maxHeight | number | The maximum height when resizing. | 10000 |
| edge | number | The edge of the border to be resized. | 5 |
## Events
| Name | Parameters | Description |
| :--- | :--- | :--- |
| onStartResize | e | Fires when resizing starts. |
| onResize | e | Fires during resizing. Return false to prevent the DOM element from actually resizing. |
| onStopResize | e | Fires when resizing stops. |
## Methods
| Name | Parameters | Description |
| :--- | :--- | :--- |
| options | none | Returns the resizable options. |
| enable | none | Enables the resizable feature. |
| disable | none | Disables the resizable feature. |
* * jQuery EasyUI Plugins](#)
YouTip