Created
February 10, 2012 02:41
-
-
Save ledsun/1785772 to your computer and use it in GitHub Desktop.
jQuery UI resizable でリサイズを縦だけにする方法
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(".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