I can not understand why my jsplumb is not working. I created a very simple sippet example (attached to this post).
jsPlumb.ready(function() { jsPlumb.draggable($('.square')) jsPlumb.connect({ source: "element1", target: "element2" }); });
.square { background-color: red; width: 50px; height: 50px; position: absolute; }
<body> <h1>Hello World!</h1> <div id="element1" class="square"></div> <div id="element2" class="square" style="left:300px"></div> <script data-require=" jquery@ *" data-semver="2.1.4" src="http://code.jquery.com/jquery-2.1.4.min.js"></script> <script data-require=" jsplumb@ *" data-semver="1.7.2" src="https://cdnjs.cloudflare.com/ajax/libs/jsPlumb/1.4.1/jquery.jsPlumb-1.4.1-all-min.js"></script> </body>
I set my positioning in css to absolute, but I'm at a dead end why I can't get it to work. I compared it with working examples and read the documentation without any problems.
I would really appreciate any help with this.
Where am I mistaken?
source share