jQuery Splitter

Set the panels property of the jqxSplitter. Author: http://jqwidgets.com

HTML

<link rel="stylesheet" href="http://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<link rel="stylesheet" href="http://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<script src="http://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<div id='jqxSplitter'>
    <div style="background-color: #97FFAF"></div>
    <div style="background-color: #E8C0AF"></div>
</div>

JavaScript

$("#jqxSplitter").jqxSplitter({
    width: '300px',
    height: '300px',
    theme: 'energyblue',
    resizable: false,
    orientation: 'horizontal',
    panels: [{ size: 300 }, { size: 0}]
});