|
Project Information
Links
|
resize your doms in a easy way! usage $('.resizeDiv').resizable({
handler: '.handler',
min: { width: 300, height: 150 },
max: { width: 500, height: 400 },
onResize: function(e) {
state.html('target style: {width: ' +
e.data.resizeData.target.css('width') + ', height: ' +
e.data.resizeData.target.css('height') + '}');
},
onStop: function(e) {
$('#state').html('stopped');
}
});
more informations from the demo package |