0

I'm wondering how to replicate the functionality of the draggable column/row dividers such as found at http://jsfiddle.net/.

Is this built on top of some library?

Thanks!

Garen Checkley
  • 5,512
  • 6
  • 22
  • 24

1 Answers1

3

The draggable dividers in the jsfiddle site are implemented using the code in jsfiddle.net/js/LayoutCM.js and jsfiddle.net/codemirror/js/codemirror.js.

Note: The new code change in SO makes it really finiciky to directly link to the jsfiddle implementation in order to explain how they implemented something.

Other relevant StackOverflow questions include

The is functionality is provided various projects including jquery plugins and other javascript scripts

Also see other resources including

Most people seem to use an existing jquery plugin or make their own implementation using the Draggable and Resizable components, for example code see the other StackOverflow posts mentioned.

Community
  • 1
  • 1
Appleman1234
  • 15,946
  • 45
  • 67