Skip to content

Instantly share code, notes, and snippets.

@brgnepal
Created May 29, 2015 08:23
Show Gist options
  • Save brgnepal/d1d8b8a6a6eca3036278 to your computer and use it in GitHub Desktop.
Save brgnepal/d1d8b8a6a6eca3036278 to your computer and use it in GitHub Desktop.
Split div into three equal parts: snippet 3
$('#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