Created
May 29, 2015 08:23
-
-
Save brgnepal/d1d8b8a6a6eca3036278 to your computer and use it in GitHub Desktop.
Split div into three equal parts: snippet 3
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
$('#main_div').width(800).height(500).split({ | |
orientation: 'vertical', | |
limit: 3, | |
position: '67%' | |
}); | |
$('#left_pane').width($('#left_pane').width()).height(500).split({ | |
orientation: 'vertical', | |
limit: 3, | |
position: '50%' | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment