Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8843031
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T11:06:53+00:00 2026-06-14T11:06:53+00:00

I want to connect div’s using jsPlumb. It works when I used styles, but

  • 0

I want to connect div’s using jsPlumb. It works when I used styles, but the final lines have an incorrect offset when I use jquery-ui decorations like accordion.

Code:

<!doctype html>
<html lang="us">
<head>
    <meta charset="utf-8">
    <title>jQuery UI Example Page</title>
    <link href="css/ui-lightness/jquery-ui-1.9.1.custom.css" rel="stylesheet"/>
    <script src="js/jquery-1.8.2.js"></script>
    <script src="js/jquery-ui-1.9.1.custom.js"></script>
    <script src="js/jquery.jsPlumb-1.3.16-all.js"></script>

    <script>
    $(function() {
        $( "#top" ).accordion({
            collapsible: false,
            icons: false
            });
    });
    </script>
</head>

<body>

<h1>jsPlumb tests</h1>

<div id="top"  style="border-width: 2px; border-style: solid; border-color: red;">
    <h1>TOP</h1>
</div>
<div>
    <p>Text Text Text</p>
</div>
<div id="bottom" style="margin: 0px 100px 0px 50px; border-width: 2px; border-style: solid; border-color: red;">
    <h1>Bottom</h1>
</div>

<script>
jsPlumb.ready(function() {

jsPlumb.importDefaults({
    ConnectorZIndex:5
});

var jsP = jsPlumb.getInstance({
    PaintStyle:{ lineWidth:1, strokeStyle:"#567567", outlineColor:"black", outlineWidth:1 },
    Connector: "Straight",
    Endpoint: "Blank"
});

var e0 = jsP.addEndpoint("top", { 
    anchor: ["Perimeter", {shape:"square", anchorCount:100}]
});

var e1 = jsP.addEndpoint("bottom", { 
    anchor: ["TopCenter"]
});

jsP.connect({ source:e0, target:e1});

}); 

</script>


</body>
</html>

Produces:
Result of code

The desired effect (without accordion decoration) is:
Desired result

What I am doing wrong? It seems that the line is rendered before the accordion decoration.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T11:06:54+00:00Added an answer on June 14, 2026 at 11:06 am

    I have found a solution changing the order of the scripts, including the style one inside the jsPlumb one:

    <!doctype html>
    <html lang="us">
    <head>
        <meta charset="utf-8">
        <title>jQuery UI Example Page</title>
        <link href="css/ui-lightness/jquery-ui-1.9.1.custom.css" rel="stylesheet"/>
        <script src="js/jquery-1.8.2.js"></script>
        <script src="js/jquery-ui-1.9.1.custom.js"></script>
        <script src="js/jquery.jsPlumb-1.3.16-all.js"></script>
    </head>
    
    <body>
    
    <h1>jsPlumb tests</h1>
    
    <div id="top"  style="border-width: 2px; border-style: solid; border-color: red;">
        <h1>TOP</h1>
    </div>
    <div>
        <p>Text Text Text</p>
    </div>
    <div id="bottom" style="margin: 0px 100px 0px 50px; border-width: 2px; border-style: solid; border-color: red;">
        <h1>Bottom</h1>
    </div>
    
    <script>
            $( "#top" ).accordion({
                collapsible: false,
                icons: false
                });
    
    
    jsPlumb.ready(function() {
    
    jsPlumb.importDefaults({
        ConnectorZIndex:5
    });
    
    var jsP = jsPlumb.getInstance({
        PaintStyle:{ lineWidth:1, strokeStyle:"#567567", outlineColor:"black", outlineWidth:1 },
        Connector: "Straight",
        Endpoint: "Blank"
    });
    
    var e0 = jsP.addEndpoint("top", { 
        anchor: ["Perimeter", {shape:"square", anchorCount:100}]
    });
    
    var e1 = jsP.addEndpoint("bottom", { 
        anchor: ["TopCenter"]
    });
    
    jsP.connect({ source:e0, target:e1});
    
    }); 
    
    </script>
    
    
    </body>
    </html>
    

    And the result is:
    Desired reuslt

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using jQuery plugin called jsPlumb - http://jsplumb.org/jquery/demo.html and I want to connect
I want to connect my log4j.xml with log4j.xsd (xml schema). Project don't have any
I want to connect my rails 3 application to firebird database. I have followed
I want to connect from home using SQL Server 2005 to another PC. I
I want to connect to DB2 from excel macro...This is my code, but it
i want to connect database to iphone sdk but it is taking the default
In my application I want to connect SQL Server Express with Hibernate. But I
I just installed VS2010 and I want to connect to TFS, But I don't
at the minute I have this: <div id=fb-root></div> <script src=http://connect.facebook.net/en_US/all.js></script> <script> window.fbAsyncInit = function()
I have a some code, but I don't now how to connect this with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.