Skip to content

Instantly share code, notes, and snippets.

@ledsun
Created February 10, 2012 02:41
Show Gist options
  • Select an option

  • Save ledsun/1785772 to your computer and use it in GitHub Desktop.

Select an option

Save ledsun/1785772 to your computer and use it in GitHub Desktop.
jQuery UI resizable でリサイズを縦だけにする方法
$(".resizable").resizable({
handles: "se",
resize: function (event, ui) {
var self = $(this).data("resizable");
self.size.width = self.width;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment