I use the excellent jQuery user interface to perform “matching” so that the user can “map” faces from one program to faces from another 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:

what I really wanted was (if possible) to create a line between Elsa and Kjell , so he makes the connection between them understandable.
I can always do this with numbers inside the boxes, but I really wanted to know how to do this using strings.
Thank you
jquery html jquery-ui svg drawing
balexandre Feb 11 '09 at 13:08 2009-02-11 13:08
source share