
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
jQuery Split Pane plugin
The plugin should work in IE8 and above as well as in Chrome, Safari and Firefox.
You can download split-pane.js and split-pane.css manually to you project or you can install with bower:
bower install split-pane
Below is a basic example on how to use the plugin. Check out my blog post for some prettier examples.
As you can see, I'm setting up component widths and divider position using css, not as options to the JS splitPane function. The reason for this is that I like things to look good even before the JavaScript kicks in.
<!DOCTYPE html>
<html>
<head>
<title>Basic Example</title>
<link rel="stylesheet" href="split-pane.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="split-pane.js"></script>
<style type="text/css">
html, body {
height: 100%;
min-height: 100%;
margin: 0;
padding: 0;
}
.split-pane-divider {
background: #aaa;
}
#left-component {
width: 20em;
}
#my-divider {
left: 20em; /* Same as left component width */
width: 5px;
}
#right-component {
left: 20em; /* Same as left component width */
margin-left: 5px; /* Same as divider width */
}
</style>
<script>
$(function() {
$('div.split-pane').splitPane();
});
</script>
</head>
<body>
<div class="split-pane fixed-left">
<div class="split-pane-component" id="left-component">
This is the left component
</div>
<div class="split-pane-divider" id="my-divider"></div>
<div class="split-pane-component" id="right-component">
This is the right component
</div>
</div>
</body>
</html>
FAQs
jQuery Split Pane plugin
The npm package split-pane receives a total of 267 weekly downloads. As such, split-pane popularity was classified as not popular.
We found that split-pane demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.