Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the excellent JQuery UI to do a "mapping" so the user can "map" persons from one program to persons from other program.

using this simple JQuery:

$(document).ready(function() {
    $("div .draggable").draggable({
        revert: 'valid',
        snap: false
    });

    $("div .droppable").droppable({
        hoverClass: 'ui-state-hover',
        helper: 'clone',
        cursor: 'move',
        drop: function(event, ui) {
            $(this)
                .addClass('ui-state-highlight')
                .find("img")
                .removeAttr("src")
                .attr("src", "_assets/img/icons/check-user-48x48.png");

            $(this).droppable('disable');

            $(ui.draggable)
                .addClass('ui-state-highlight')
                .find("img")
                .removeAttr("src")
                .attr("src", "_assets/img/icons/check-user-48x48.png");

            $(ui.draggable).draggable('disable');
        }
    });

    $("div .droppable").bind("dblclick", function() {
        $(this)
            .removeClass('ui-state-highlight')
            .find("img")
            .removeAttr("src")
            .attr("src", "_assets/img/icons/user-48x48.png");
        $(this).droppable('enable');

        EnableSource($(this));
    });
});

I get to this:

alt text

what I really wanted was (if possible) create a line between Elsa and Kjell so it makes the connection between them clear.

I can always do it with numbers inside the boxes, but I really wanted to know how to do this using the lines.

Thanks.

share|improve this question

2 Answers

up vote 53 down vote accepted
  • updated (29.Sep.2011) Added GIT Repo; cleaned the code; update to latest framework versions;
  • updated (03.Mar.2013) Fixed links with working example;

Current example uses:

Source

Source code in Git Repository

Demo

Page demo at JSBIN


Works on FF, IE, Chrome, Safari and Opera.

tested on:

  • Firefox 6 and 7
  • IE 8 and 9
  • Chrome 12+
  • Safari 5+
  • Opera 11.51

to show you all, I just made a little demo of my accomplishment (I am a proud person today!):

Video demo

and a little image:

alt text

share|improve this answer
any progress on making this work in IE? – Dan Wolchonok May 20 '09 at 19:13
only if you use Silverlight :( no SVG support in IE8 either, only in FF. – balexandre May 21 '09 at 8:14
Does not work in Safari/Chrome/Webkit... – duckyflip May 22 '09 at 13:20
"no one uses that" :) ... it was working only on FF, and now FF and IE ... one browser at a time mate ;) -> I use FF in my Mac ;) – balexandre May 22 '09 at 13:26
i looked into this quickly, it seems like you could do this with excanvas. similary to what flot (code.google.com/p/flot) does. – Dan Wolchonok May 22 '09 at 13:27
show 7 more comments

I'm too new to post a link but if you google "Library for simple drawing with jQuery", you may find what you're looking for. :)

link here

share|improve this answer
Fantastic, thank you :) I didn't know that was a new SVG version as well... – balexandre May 22 '09 at 12:19
I googled, this page was the first reference to what I really had in mind, mmm, thank you @balexandre – Ayyash Apr 25 at 7:10

protected by Community Sep 29 '11 at 8:01

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.